process-fast
v1.0.0
Published
Fast node `require('process')` for modern browsers
Readme
process-fast
Fast node require('process') for modern browsers.
Inspired by process but painfully simple - usingqueueMicrotask to shim process.nextTick().
If you only need to support modern browsers this can speed up many node based modules and dependencies by avoiding slow shims such as setTimeout().
Install
$ npm install process-fastExample
Shim with webpack:
plugins: [
new webpack.ProvidePlugin({
process: 'process-fast'
})
]