1.0.0 β€’ Published 4 months ago

storage-box v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

storage-box is a JavaScript library designed for the purpose of storing data in various structures across multiple storage systems. The primary goal of this library is to offer a straightforward and effective method for data storage.

πŸ‘€ Features

  • Simple API
  • Support for Node.js, Bun and the browser
  • Support for multiple storage types (Memory, File, Browser-storage, etc.)
  • Multiple data structures (Literals, Hashes, Lists, etc.)
  • Time-based key expiration

βš™οΈ Installation

npm i storage-box

πŸ“– Usage

import { Client } from 'storage-box';

const client = new Client();

client.setex('key', 'value', 2);

console.log(client.get('key')); // value

// time to live in milliseconds
console.log(client.ttl('key', true)); // 2000

// after 3 seconds
setTimeout(() => {
  console.log(client.get('key')); // undefined
}, 3e3);

πŸ“¦ Storage Types

  • Memory (Docs) (default)
  • File-based (Fs) (Docs)
  • Local/Session Storage (Docs)

πŸ“š Documentation

For all configuration options, please see the API docs.

🀝 Contributing

You can contribute to this project by opening an issue or a pull request on GitHub. Feel free to contribute, we care about your ideas and suggestions.

Project Stats

Alt

License

MIT Β© Shahrad Elahi

1.0.0

4 months ago

1.0.0-canary.0

4 months ago

1.0.0-canary.1

4 months ago

1.0.0-canary.4

4 months ago

1.0.0-canary.2

4 months ago

1.0.0-canary.3

4 months ago

0.3.1

5 months ago

0.3.0

5 months ago

0.0.4

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago