@@ -17,19 +17,19 @@ Lrujs is a fast and lightweight least-recently-used cache for [Node.js](http://n
1717Install using npm:
1818
1919``` console
20- $ npm i lrujs
20+ $ npm i @opensnip/ lrujs
2121```
2222
2323Install using yarn:
2424
2525``` console
26- $ yarn add lrujs
26+ $ yarn add @opensnip/ lrujs
2727```
2828
2929## Example
3030
3131``` js
32- const LRUCache = require (" lrujs" );
32+ const LRUCache = require (" @opensnip/ lrujs" );
3333
3434// Create cache object
3535const cache = new LRUCache ();
@@ -62,7 +62,7 @@ Lrujs is also support TTL, but it is not a TTL cache, and does not make strong T
6262#### Create a cache object:
6363
6464``` js
65- const LRUCache = require (" lrujs" );
65+ const LRUCache = require (" @opensnip/ lrujs" );
6666
6767// Create cache object
6868const cache = new LRUCache ({
@@ -155,9 +155,9 @@ cache.forEach(function (data) {
155155
156156[ MIT License] ( https://github.com/opensnip/lrujs/blob/main/LICENSE )
157157
158- [ npm-downloads-image ] : https://badgen.net/npm/dm/lrujs
159- [ npm-downloads-url ] : https://npmcharts.com/compare/lrujs?minimal=true
160- [ npm-install-size-image ] : https://badgen.net/packagephobia/install/lrujs
161- [ npm-install-size-url ] : https://packagephobia.com/result?p=lrujs
162- [ npm-url ] : https://npmjs.org/package/lrujs
163- [ npm-version-image ] : https://badgen.net/npm/v/lrujs
158+ [ npm-downloads-image ] : https://badgen.net/npm/dm/@opensnip/ lrujs
159+ [ npm-downloads-url ] : https://npmcharts.com/compare/@opensnip/ lrujs?minimal=true
160+ [ npm-install-size-image ] : https://badgen.net/packagephobia/install/@opensnip/ lrujs
161+ [ npm-install-size-url ] : https://packagephobia.com/result?p=@opensnip/ lrujs
162+ [ npm-url ] : https://npmjs.org/package/@opensnip/ lrujs
163+ [ npm-version-image ] : https://badgen.net/npm/v/@opensnip/ lrujs
0 commit comments