Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

process-fast

mathiasvr6kMIT1.0.0

Fast node require('process') for modern browsers

readme

process-fast

NPM Downloads Dependency status license

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-fast

Example

Shim with webpack:

plugins: [
  new webpack.ProvidePlugin({
    process: 'process-fast'
  })
]