Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

data-storager

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-storager

Implementation of an interface for saving and restoring small data

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

data-storager

Simple storage for you data with customized transports/provirers

NPM version Dependency Status License Downloads

Installation

npm install data-storager --save

Usage

const storage = require('data-storager');

// create a named data store. If the data in the storage has already 
// been saved earlier, it will be read and placed in `test.data`
const test = storage.create(
    // set storage name
    "test", 
    // Set block working type of data block (array or object). 
    // It will work when the storage is first initiated 
    // on this transport.
    {},
    // Set transport. The transport object must have methods
    // `.store(name, data)` and `.restore(name)`
    new storage.transports.File({
        storragePath: "./store",
        humanize: true
    })
);

// take data from storage and output it to the console
console.log(test.data);
   // при первом запуске выведет: `{}`
   // при следующем запуске выведет: `{foo: 123, bar: {test: true}}`

// put data into storage
test.data.foo = 123;
test.data.bar = {test: true};

// save all data changes to the storage
storage.store();

... documentation in processed

Participation in development

https://github.com/lastuniverse/data-storager/issues

License

MIT

NPM

Keywords

FAQs

Package last updated on 27 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc