1.2.0 • Published 7 years ago

@speedy/require-cache v1.2.0

Weekly downloads
390
License
ISC
Repository
github
Last release
7 years ago

@speedy/require-cache

CircleCI npm version Dependency Status devDependency Status

Speed up Node load time by caching resolved module paths to avoid module resolution and refetching each time the application is loaded.

The first time the application loads, resolved file paths are saved in the file system.

This modules patches the _resolveFilename method of Node module, caching the files it finds in order to improve Node loading performance.

This is inspired by fast-boot.

Benchmark results

LibraryUncachedCachedEfficientDuration
tslint128.268 ms82.189 ms35.923 %-46.078 ms
fs-extra0.229 ms0.236 ms-2.991 %0.007 ms
shelljs59.767 ms32.028 ms46.412 %-27.739 ms
stylelint1492.165 ms687.323 ms53.938 %-804.842 ms
postcss71.924 ms45.183 ms37.179 %-26.74 ms
yargs97.382 ms27.751 ms71.503 %-69.632 ms
eslint359.556 ms292.274 ms18.712 %-67.282 ms

Benchmark mark done on a Windows 7 64 Bit, i7-5500U CPU @ 2.40Ghz and 16GB RAM.

Getting Started

Installation

npm install @speedy/require-cache --save

Usage

import { RequireCache } from "@speedy/require-cache";
new RequireCache().start();

import * as stylelint from "stylelint";
import * as _ from "lodash";

Interfaces

CacheOptions

NameDescriptionType
cacheKillerUsed to invalidate the cache. By default it's set the version of package.json.Normally one will pass the application version number assuming that a different version or a Unix timestamp when the cache should expire.string: 'package.json' version: 1.0.0number: Unix timestamp: 1490873027numberstring
cacheFilePathAlternate cache file location. Default: ./.cache/speedy-require-cache.jsonstring
readOnlyModeWhen in ReadOnly mode. Any changes will be discharged once process is terminated. Default: falseboolean

CacheStats

NameDescriptionType
cacheHitNumber of modules who's locations were found in the cachenumber
cacheMissNumber of modules who's locations were not found in the cache and were added to the cachenumber
notCachedNumber of modules not to be cached - either not in node_modules folder or process.cwd()number

Methods and Properties

new RequireCache(options: Partial\<CacheOptions>) ⇒ RequireCache

Creates an instance of RequireCache.

requireCache.isEnabled : boolean

Whether or not the cache is currently enabled.

Read only: true

requireCache.stats : CacheStats

Caching effectiveness statistics.

Read only: true

Start caching of module locations.

requireCache.stop()

Stop caching of the modules locations.

requireCache.reset()

Deletes the cache file.

requireCache.save()

Saves cached paths to file.

Benchmark Yourself

If you'd like to run the benchmark yourself. Clone the Git repository and install all the dependencies executing the following commands in your terminal:

npm install
npm run benchmark-install

To benchmark run:

npm run benchmark