Awesome
CJS/AMD load time benchmark
Compare load times of two module systems.
It's basic benchmark that compares speed of both systems when used in development mode.
Main point is to show that server-side generation of a bundle on request is not necessarily slower than loading modules asynchronously from the browser. It's actually opposite and difference can be significant. See the results section for numbers.
AMD modules are loaded with RequireJS and CommonJS modules are bundled on request with Webmake.
There's no prebuild step, in both cases modules are loaded/bundled on request. In case of AMD, they're loaded asynchronously in a browser. In case of CJS when request occurs they're read from filesystem, bundled and served in one file.
To see fair results (adequate to your development environment) benchmark needs to be installed and launched locally.
Installation
Install package:
$ npm install cjs-vs-amd-benchmark
Generate dummy modules (by default it resembles 400 modules tree from existing real world project)
$ npm run setup
You can generate custom number of out of provided modules map:
See bin/default-deps-map.json
on how it should be constructed.
$ bin/generate --mapPath=path/to/custom/map
Start server (defaults to port 3000)
$ npm start
If you prefer other port, do:
$ bin/start --port=8080
Load the benchmark on corresponding port, e.g. localhost:3000
Results
Following load times were measured on 2008 MBP with local setups of Node.js and Nginx server, each number is average of 5 runs.
Node.js server setup was very basic, no clusters involved, so concurrency was limited (hence not great results for AMD).
Nginx was configured with Cache-Control: no-cache
header, so browser always checks with the server whether new version of module is available.