• Stars
    star
    127
  • Rank 276,998 (Top 6 %)
  • Language
    JavaScript
  • Created about 9 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Caches resolved paths in module require to avoid Node hunting for right module. Speeds up app load.

cache-require-paths

Caches resolved paths in module require to avoid Node hunting for right module. Speeds up app load.

NPM

Build status semantic-release

This is a partial solution to Node "hunting" for right file to load when you require a 3rd party dependency. See Nodeโ€™s require is dog slow and Faster Node app require for details.

Use

npm install --save cache-require-paths

Load the module first in your application file

// index.js
require('cache-require-paths');
...

The first time the app loads, a cache of resolved file paths will be saved to .cache-require-paths.json in the current directory. Every application startup after that will reuse this filename cache to avoid "hunting" for the right filename.

To save cached paths to a different file, set the environmental variable CACHE_REQUIRE_PATHS_FILE.

Results

Here are results for loading common packages without and with caching resolved require paths. You can run any of this experiments inside the test folder. node index.js loads using the standard resolve. node index.js --cache uses a cache of the resolves paths.

Using node 0.10.37

require('X')    |  standard (ms)  |  with cache (ms)  |  speedup (%)
------------------------------------------------------------------
[email protected]  |        72       |       46          |     36
[email protected]   |       230       |      170          |     26
[email protected]     |       120       |       95          |     20
[email protected]    |       170       |      120          |     29

Using node 0.12.2 - all startup times became slower.

require('X')    |  standard (ms)  |  with cache (ms)  |  speedup (%)
------------------------------------------------------------------
[email protected]  |        90       |       55          |     38
[email protected]   |       250       |      200          |     20
[email protected]     |       150       |      120          |     20
[email protected]    |       200       |      145          |     27

TODO

  • Cache only the absolute paths (relative paths resolve quickly)
  • Invalidate cache if dependencies in the package.json change

Discussion

You can see Node on Mac OS X searchig for a file to load when loading an absolute path like require(express) by using the following command to make a log of all system level calls from Node (start this from another terminal before running node program)

sudo dtruss -d -n 'node' > /tmp/require.log 2>&1

Then run the test program, for example in the test folder run

$ node index.js

Kill the dtruss process and open the generated /tmp/require.log. It shows every system call with the following 4 columns: process id (should be single node process), relative time (microseconds), system call with arguments, and after the equality sign the numerical result of the call.

When loading express dependency from the test program using require('express'); we see the following search (I abbreviated paths for clarity):

# microseconds call
664730 stat64(".../test/node_modules/express\0", 0x7FFF5FBFECF8, 0x204)        = 0 0
664784 stat64(".../test/node_modules/express.js\0", 0x7FFF5FBFED28, 0x204)         = -1 Err#2
664834 stat64(".../test/node_modules/express.json\0", 0x7FFF5FBFED28, 0x204)       = -1 Err#2
664859 stat64(".../test/node_modules/express.node\0", 0x7FFF5FBFED28, 0x204)       = -1 Err#2
664969 open(".../test/node_modules/express/package.json\0", 0x0, 0x1B6)        = 11 0
664976 fstat64(0xB, 0x7FFF5FBFEC38, 0x1B6)         = 0 0
665022 read(0xB, "{\n  \"name\": \"express\", ...}", 0x103D)        = 4157 0
665030 close(0xB)      = 0 0

By default, Node checks if the local node_modules/express folder exists first (first stat64 call), Then it tries to check the status of the node_modules/express.js file and fails. Then node_modules/express.json file. Then node_modules/express.node file. Finally it opens the node_modules/express/package.json file and reads the contents.

Note that this is not the end of the story. Node loader only loads express/package.json to fetch main filename or use the default index.js! Each wasted file system call takes only 100 microseconds, but the tiny delays add up to hundreds of milliseconds and finally seconds for larger frameworks.

Profile the same program with --cache option added to the command line arguments

$ node index.js --cache

This option loads the cache-require-paths module as the first require of the application

var useCache = process.argv.some(function (str) {
  return str === '--cache';
});
if (useCache) {
  console.log('using filename cache');
  require('cache-require-paths');
}

The trace now shows no calls to find express package, just straight load of the express/index.js file.

643466 stat64(".../node_modules/express/index.js\0", 0x7FFF5FBFED28, 0x3)         = 0 0
643501 lstat64(".../node_modules\0", 0x7FFF5FBFED08, 0x3)         = 0 0
643513 lstat64(".../node_modules/express\0", 0x7FFF5FBFED08, 0x3)         = 0 0
643523 lstat64(".../node_modules/express/index.js\0", 0x7FFF5FBFED08, 0x3)        = 0 0
643598 open(".../node_modules/express/index.js\0", 0x0, 0x1B6)        = 12 0
643600 fstat64(0xC, 0x7FFF5FBFED58, 0x1B6)         = 0 0

Mission achieved. Note that the speedup only happens after the first application run finishes successfully. The resolution cache needs to be saved to a local file, and this happens only on process exit.

Small print

Author: Gleb Bahmutov ยฉ 2015

License: MIT - do anything with the code, but don't blame me if it does not work.

Spread the word: tweet, star on github, etc.

Support: if you find any problems with this module, email / tweet / open issue on Github

More Repositories

1

code-snippets

Chrome DevTools code snippets
JavaScript
1,798
star
2

start-server-and-test

Starts server, waits for URL, then runs test command; when the tests end, shuts down server
JavaScript
1,417
star
3

npm-install

GitHub Action for install npm dependencies with caching without any configuration
JavaScript
642
star
4

next-update

Tests if module's dependencies can be updated to latest version
JavaScript
558
star
5

bottle-service

Instant web applications restored from ServiceWorker cache
JavaScript
331
star
6

javascript-journey

Source code for blog post Journey from procedural to reactive JavaScript with stops
JavaScript
329
star
7

babel-service

On demand targeted transpiling inside the browser's ServiceWorker
JavaScript
209
star
8

dont-break

Checks if the current version of your package would break dependent projects
JavaScript
206
star
9

cy-api

Cypress custom command "cy.api" for end-to-end API testing
TypeScript
206
star
10

cypress-and-jest

Cypress and Jest both with code coverage running unit tests
JavaScript
205
star
11

express-service

Package ExpressJS server to run inside a ServiceWorker
JavaScript
203
star
12

cypress-failed-log

Saves the Cypress test command log as a JSON file if a test fails
JavaScript
179
star
13

snap-shot

Jest-like snapshot feature for the rest of us, works magically by finding the right caller function
JavaScript
171
star
14

pre-git

Automatically install pre-commit / pre-push hooks in your git repo
JavaScript
169
star
15

cypress-svelte-unit-test

Unit testing Svelte components in Cypress E2E test runner
JavaScript
160
star
16

cypress-angular-unit-test

Trying to load and bootstrap Angular component dynamically inside Cypress
TypeScript
157
star
17

cypress-dark

Dark and Halloween color themes for Cypress.io test runner
CSS
155
star
18

snap-shot-it

Smarter snapshot utility for Mocha and BDD test runners + data-driven testing!
JavaScript
155
star
19

draw-cycle

Simple Cycle.js application visualized: streams, events, DOM
HTML
146
star
20

now-pipeline

Simple CI pipeline with goal to deploy new version at Zeit Now cloud if tests pass
JavaScript
143
star
21

console.table

Adds console.table method that prints an array of objects as a table in console
JavaScript
140
star
22

npm-quick-run

Quickly run NPM script by prefix without typing the full name
JavaScript
139
star
23

next-and-cypress-example

Next.js example instrumented for code coverage from Cypress tests
JavaScript
129
star
24

cypress-skip-and-only-ui

Client-side buttons to run a single test or skip it for Cypress test runner
TypeScript
128
star
25

npm-module-checklist

Steps to check when starting, working and publishing a module to NPM
124
star
26

really-need

Node require wrapper with options for cache busting, pre- and post-processing
JavaScript
109
star
27

add-typescript-to-cypress

Quickly adds TypeScript spec support to Cypress
JavaScript
108
star
28

cypress-examples

Static site with Cypress examples tested right from the Markdown sources
JavaScript
105
star
29

cypress-select-tests

User space solution for picking Cypress tests to run
JavaScript
98
star
30

test-todomvc-using-app-actions

Example Cypress tests going from page objects to app actions
TypeScript
97
star
31

cypress-movie

Generate movies from your Cypress end-to-end tests
JavaScript
95
star
32

eslint-rules

My custom eslint rules in addition to the ones provided at http://eslint.org/
JavaScript
95
star
33

console-log-div

Clones console.log calls to a created div in the page. Great for demos and experiments.
JavaScript
94
star
34

rambo

Automatic Ramda solution bot
JavaScript
92
star
35

git-branches

Bash shell to show current branches and their descriptions using only default Git features
JavaScript
89
star
36

cypress-recurse

A way to re-run Cypress commands until a predicate function returns true
JavaScript
88
star
37

game-of-github

Play Game of Life in your GitHub contributions
JavaScript
83
star
38

have-it

The fastest NPM install does nothing because you already have it
JavaScript
75
star
39

node-rx-cycle

Example using RxJS and Cycle.js on the server to handle requests (NOT server-side rendering)
JavaScript
73
star
40

lazy-ass

Lazy node assertions without performance penalty
TypeScript
68
star
41

talks

Public presentations
JavaScript
67
star
42

node-hook

Run source transform function on node require call
JavaScript
66
star
43

as-a

Runs a given command with additional environment settings for simple local development
JavaScript
64
star
44

ban-sensitive-files

Checks filenames to be committed against a library of filename rules to prevent sensitive files in Git
JavaScript
62
star
45

cypress-split

Split Cypress specs across parallel CI machines for speed
JavaScript
59
star
46

js-complexity-viz

JavaScript source code complexity tool
JavaScript
58
star
47

changed-log

Returns all commit messages between 2 versions of an NPM module
JavaScript
58
star
48

cypress-network-idle

A little Cypress.io plugin for waiting for network to be idle before continuing with the test
JavaScript
55
star
49

rollem

Roll up multiple ES6 bundles at once
JavaScript
54
star
50

cypress-watch-and-reload

Reloads Cypress when one of the watched files changes
JavaScript
53
star
51

cypress-data-session

Cypress command for flexible test data setup
JavaScript
51
star
52

cypress-esbuild-preprocessor

Bundle Cypress specs using esbuild
JavaScript
48
star
53

functional-pipeline

Quickly chain method calls, property access and functions into a pipeline
JavaScript
48
star
54

cypress-if

Easy conditional if-else logic for your Cypress tests when there is no other way
JavaScript
46
star
55

demo-docker-cypress-included

Demo running the complete Docker image `cypress/included`
Shell
45
star
56

vue-vuex-todomvc

Example TodoMVC Vue.js app with Vuex store and server backend via REST
JavaScript
44
star
57

manpm

Shows the relevant part of NPM module's README file right in your terminal
JavaScript
42
star
58

mocked-env

Easy way to mock process.env during BDD testing
JavaScript
42
star
59

compiled

Compiles the ES* bundle to your NodeJS version on install
JavaScript
41
star
60

ng-simple-webrtc

AngularJS wrapper for SimpleWebRTC client from https://simplewebrtc.com/
JavaScript
41
star
61

cypress-playwright

Run Cypress tests using Playwright and Playwright tests using Cypress
JavaScript
41
star
62

next-updater

Dependable and safe automatic dependency updater for Nodejs packages
JavaScript
41
star
63

rocha

Runs Mocha unit tests but randomizes their order
JavaScript
40
star
64

node-mock-examples

Examples of tests that mock Node system APIs: fs, http, child_process, timers
JavaScript
39
star
65

generator-node-bahmutov

My personal Node project boilerplate generator
JavaScript
38
star
66

center-code

Shows the file's source centered in the terminal
JavaScript
38
star
67

bdd-stdin

Utility for easily feeding mock responses to unit tests that require command line input from the user
JavaScript
38
star
68

instant-vdom-todo

Prehydrated, self-rewriting TodoMVC using Virtual-Dom and bottle-service
JavaScript
37
star
69

hydrate-app

Quick app pre-loading using saved HTML snapshot
JavaScript
36
star
70

cypress-workshop-basics

Basics of end-to-end testing with Cypress.io test runner
JavaScript
35
star
71

iframe-api

Bidirectional method calls API between external and iframed code.
JavaScript
35
star
72

cly

A prototype of Cypress CLI for quicker project scaffolding
JavaScript
34
star
73

condition-circle

Checks CircleCI environment before publishing successful build using semantic-release
JavaScript
33
star
74

cy-spok

Playing with spok inside Cypress
JavaScript
33
star
75

cypress-extends

Cypress plugin that adds "extends" support to the configuration file
JavaScript
33
star
76

schema-shot

Framework-agnostic snapshot testing using "schema by example" for highly dynamic data
JavaScript
33
star
77

spots

Partial function argument binding with placeholders
JavaScript
33
star
78

change-by-example

Finds a function that transforms a given object into another given object.
JavaScript
33
star
79

cypress-repeat

Run Cypress multiple times in a row
JavaScript
32
star
80

grunty

Run any grunt plugin as NPM script without Gruntfile.js
JavaScript
31
star
81

cypress-gh-action-example

Example running Cypress tests inside GitHub Action
JavaScript
31
star
82

all-nvm

Run any NPM command (including install) in all versions of Node managed by NVM
JavaScript
30
star
83

ci-publish

Poor man's semantic release utility. Let the CI do the `npm publish` step after the build passes
JavaScript
30
star
84

find-cypress-specs

Find Cypress spec files using the config settings
JavaScript
29
star
85

prettier-config-example

Example project with different per-folder prettier config and VSCode formatting on save
JavaScript
28
star
86

next-ver

Tells you the next semantic version for your local package
JavaScript
28
star
87

xplain

JavaScript API documentation generator that uses unit tests as examples, see example API doc at
JavaScript
28
star
88

todo-graphql-example

Example Todo app on top of json-graphql-server
JavaScript
27
star
89

local-cypress

Use Cypress without global objects
JavaScript
27
star
90

comment-value

Instruments a Node program and updates its comments with computed expression values
JavaScript
27
star
91

d3-helpers

Little utility D3 functions
JavaScript
27
star
92

cypress-hyperapp-unit-test

Unit test Hyperapp components using Cypress
JavaScript
26
star
93

google-cloud-build-example

Example running Cypress end-to-end tests on Google Cloud Build
JavaScript
26
star
94

heroin

Strong and addictive dependency injection for JavaScript
JavaScript
25
star
95

ggit

Local git command wrappers
JavaScript
25
star
96

wiseli

See the repo's example while installing it with NPM
JavaScript
24
star
97

cypress-timings

A Cypress plugin for reporting individual command timings
JavaScript
24
star
98

term-to-html

Stream terminal output with ansi codes into nicely formatted HTML
JavaScript
24
star
99

cypress-angularjs-unit-test

Unit test Angularjs code using Cypress.io test runner
JavaScript
23
star
100

cypress-get-it

Get elements by data attribute by creating a Cy command on the fly
JavaScript
23
star