0.0.10 • Published 3 years ago

dataman v0.0.10

Weekly downloads
15
License
MIT
Repository
github
Last release
3 years ago

dataman npm.io

npm Build Status

Library for managing data in redis-like storage engines

npm.io

Table of contents

Usage

Getting/setting primitive as example

const dataman = require("dataman");
const storage = dataman.storage("memory://");

storage.primitive.set("test", "testValue").then(() => {
	storage.primitive.get("test").then(data => {
		console.log(data);
	});
});

Backends

  • Redis

  • Memory (for single instance projects, can be serialized and deserialized into)

Structures

  • Queue

  • List

  • Hashmap

  • String/Number/Boolean

  • Set

Installation

npm

npm install dataman --save

yarn

yarn add dataman

Authors

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago