npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

js-cache-factory

v1.1.0

Published

jsCache is a fast and small JavaScript library used for caching at client side. It helps you to decrease your server load and increase your application performance by caching api for the time period you want. Not only api you can case every type of data w

Downloads

10

Readme

jsCache

jsCache is a fast and small JavaScript library used for caching at client side. It helps you to decrease your server load and increase your application performance by caching api for the time period you want. Not only api you can cache every type of data with desired time you want. It leverage you to organize your caching in different objects with different type of storage and different time for expiry of your caching. Currently it is beta version. Its Awesome, i promise you will love it just check it out.

AngularJs $cacheFactory alternative

jsCache is an good alternative for AngularJS $cacheFactory with more powerfull functionality. To know more see Usage in AngularJS

Overview

Installation

  • Installing via npm

    $ npm install js-cache-factory --save
  • Installing via bower

    $ bower install js-cache --save
  • Download via cdn

    Comming soon ...

Configuration

  • Configure for cache obj

```javascript
var cacheObjOptions = {
        disableCache : false,       
        maxAge : 24*60*60*1000,     // 24 Hours
        removeOnExpire : true,
        deleteOnExpire : false,
        storageMode : "memory",     
        onExpireCallback : null,    // will be available in upcoming version
        recycleFrequency : null,    // will be available in upcoming version
        capacity : null             // will be available in upcoming version
    };
```
  • Configure for key,value you store

```javascript
    var cacheKeyOptions = {
            disableCache : false,
            maxAge : null,
            removeOnExpire : true,
            onExpireCallback : null,  // will be available in upcoming version
            recycleFrequency : null   // will be available in upcoming version
        };
```
    

Getting Started

  • Include file in project

```html
        <script src="js-cache.min.js"></script>
```
  • Create obj

```javascript
        var cacheObj = jsCache.create("cacheObjName", cacheObjOptions);
```
  • Cache anything you want in created obj

```javascript
        cacheObj.put("key", "value", cacheKeyOptions);
```
    
  • Get saved value anywhere in your project

```javascript
        cacheObj.get("key");
```    

That's all you need to do.
 You can create multiple objects with different configuration & can store multiple key,values into it.  

Usage in AngularJS

jsCache is very good alternative for $cacheFactory in AngularJS.
  • cache in $http request

Instead of calling create method

```javascript
   var cacheObj = jsCache.create("cacheObjName", cacheObjOptions);
```

You have to call

```javascript
    var httpCacheObj = jsCache.createHttpCache("cacheObjName", cacheObjOptions);
```

and pass it to 
```javascript
    $http({
        method: 'GET',
        url: "url you provide",
        params: obj,
        cache : httpCacheObj(cacheKeyOptions)
    })
```

That's all else angular will take care of saving & retriving data for http calls.
Except $http api cache procedure is same as mentioned in Getting Started guide.

Api Reference

Comming soon ...

Docs

Comming soon ...

Testing

Run

    $ npm test

Unit test cases are written to test it properly. You can find test cases inside test.js file. Although if you find any issue or you need some extra functionality, anything which you find unconmfortable please let us know or raise issue. We would love to hear from you.

##License

MIT