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

hot-file-cache

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hot-file-cache

A file cache for development which will invalidate automatically if the source changes

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by33.33%
Maintainers
1
Weekly downloads
 
Created
Source

Hot File Cache

npm version Dependency Status Build status Build status js-semistandard-style

A file cache which will invalidate automatically if the source changes

Installation

Install the plugin with npm:

$ npm install --save-dev hot-file-cache

Basic Usage

Add the plugin to your webpack config as follows:

var cache = new HotFileCache('*.md', {cwd: dir});
cache.readFile('README.md').then(function(content) {
  console.log(content);
});

Processors

var cache = new HotFileCache('*.md', {
  cwd: dir,
  fileProcessor: function (fileContent) {
    return JSON.parse(fileContent);
  }
});
cache.readFile('README.md').then(function(content) {
  console.log(content);
});

Changelog

Take a look at the CHANGELOG.md.

Contribution

You're free to contribute to this project by submitting issues and/or pull requests. This project is test-driven, so keep in mind that every change and new feature should be covered by tests. This project uses the semistandard code style.

License

This project is licensed under MIT.

FAQs

Package last updated on 21 Jun 2016

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