![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
simple-map-cache
Advanced tools
Simple npm module offering caching functionality using the native map object.
This module a very simple key/value storage for node, so you can cache any operation, function or call results.
This used to be part of my module simple-fetch-cache, but I decided to extract it and publish it on its own. It doesn't have any external dependencies and it uses the native Map
object to track the entries.
You can install with [npm]:
$ npm install --save simple-map-cache
Please look at the index.test.js file to check how the module can be used, but in a nutshell these are the methods available:
set, get, del, clear
Parameter | Description |
---|---|
set | Add new entry to the cache. ie set('day', 'friday') |
get | Retrieves entry from the cache. get('day') // returns friday. undefined for the non existing values. |
del | Removes entry from the cache |
clear | Wipes out all the entries from the cache |
All the requests cached in memory will persist there as long as the process in running. Nevertheless if you require the cache to expire after X miliseconds, you can pass it as a second parameter. ie:
// It will disappear after 100 msec.
> const cache = require('simple-map-cache')
> cache.set('testephimeral', 'shouldberemovedsoon', 100)
Copyright © 2019, Juan Convers. Released under the MIT License.
FAQs
Simple npm module offering caching functionality using the native map object.
The npm package simple-map-cache receives a total of 5 weekly downloads. As such, simple-map-cache popularity was classified as not popular.
We found that simple-map-cache 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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.