
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
storage-manager
Advanced tools
Storage Manager module that help you manage your local and session storage
Storage Manager module that help you manage your local and session storage
{ minutes: 2 }
{ minutes: 3, seconds: 30 }
npm install storage-manager --save
/**
* Supported TTL values: { milliseconds, seconds, minutes, hours, days }
* You can use multiple values like { minutes: 3, seconds: 30 }
* SessionStorage works the same implementation as LocalStorage
* */
import { LocalStorage } from 'storage-manager';
const options = { minutes: 2 }
// this will update the ttl everytime you'll get the key
LocalStorage.set('some-key', 'some-value', options)
// it will refresh the TTL of this key to it's default value (2 minutes in that case)
LocalStorage.get('some-key')
import { LocalStorage } from 'storage-manager';
// it will save the key forever untill you will remove it manually
LocalStorage.set('forever-key', 'some-value')
LocalStorage.remove('forever-key')
import { LocalStorage } from 'storage-manager';
// refreshTTL is true by default.
// refreshTTL means that everytime you'll get this key, it will refresh his TTL to what it was before
const options = { minutes: 4, seconds: 30, refreshTTL: false }
LocalStorage.set('some-key', 'some-value', options)
// this will not update the ttl everytime you'll get the key
LocalStorage.get('some-key')
// it will NOT refresh the TTL of this key, this key will stay 4 minutes and 30 seconds
import { LocalStorage } from 'storage-manager';
LocalStorage.clearAll() // clear all storage
FAQs
Storage Manager module that help you manage your local and session storage
The npm package storage-manager receives a total of 169 weekly downloads. As such, storage-manager popularity was classified as not popular.
We found that storage-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.