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

@speedy/require-cache

v1.2.0

Published

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

Downloads

253

Readme

@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

| Library | Uncached | Cached | Efficient | Duration | |-----------|-------------|------------|-----------|-------------| | tslint | 128.268 ms | 82.189 ms | 35.923 % | -46.078 ms | | fs-extra | 0.229 ms | 0.236 ms | -2.991 % | 0.007 ms | | shelljs | 59.767 ms | 32.028 ms | 46.412 % | -27.739 ms | | stylelint | 1492.165 ms | 687.323 ms | 53.938 % | -804.842 ms | | postcss | 71.924 ms | 45.183 ms | 37.179 % | -26.74 ms | | yargs | 97.382 ms | 27.751 ms | 71.503 % | -69.632 ms | | eslint | 359.556 ms | 292.274 ms | 18.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

| Name | Description | Type | |---------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | cacheKiller | Used 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: 1490873027 | number | string | | cacheFilePath | Alternate cache file location. Default: ./.cache/speedy-require-cache.json | string | readOnlyMode | When in ReadOnly mode. Any changes will be discharged once process is terminated. Default: false | boolean |

CacheStats

| Name | Description | Type | |-----------|-----------------------------------------------------------------------------------------------------|----------| | cacheHit | Number of modules who's locations were found in the cache | number | | cacheMiss | Number of modules who's locations were not found in the cache and were added to the cache | number | | notCached | Number 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