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

incache

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

incache

Simple key/value in-memory storage or on disk to persist some data

  • 3.1.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source




Simple key/value in-memory storage or on disk to persist some data

Why?

InCache is a module that store any info in memory, it can be used for example for storing server sessions, caching http response or sharing singleton object in your apps. It also give you the possibility to save data on disk so you can avoid the data loss when the process exit or restart.

Installation

Node.js

npm install incache --save

Example

const InCache = require('incache');
const store = new InCache();

// Create a record with key 'my key'
store.set('my key', 'my value');

// Update 'my key'
store.set('my key', {a: 1, b: 2});

// Remove 'my key'
store.remove('my key');

// Clear
store.clear();

// Expires after 2 seconds
incache.set('my string', 'hello world', {life: 2});

Events


// Triggered when a record has been deleted
incache.onRemoved(key => {
    console.log(key);
});

// Triggered when a record has been created
incache.onCreated((key, record) => {
    console.log(key, record);
});

//Triggered when a record has been updated
incache.onUpdated((key, record) => {
    console.log(key, record);
});

API

See full documentation

Browser

Local
<script src="node_modules/incache/dist/incache.min.js"></script>
CDN unpkg
<script src="https://unpkg.com/incache/dist/incache.min.js"></script>
CDN jsDeliver
<script src="https://cdn.jsdelivr.net/npm/incache/dist/incache.min.js"></script>

Changelog

You can view the changelog here

License

InCache is open-sourced software licensed under the MIT license

Author

Fabio Ricali

Contributor

Davide Polano

Keywords

FAQs

Package last updated on 21 Aug 2017

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