# process-fast

> Fast node `require('process')` for modern browsers

Latest version **1.0.0** (published 2020-11-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install process-fast
pnpm add process-fast
yarn add process-fast
bun add process-fast
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2020-11-20 |
| First published | 2020-11-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Mathias Rasmussen |
| Maintainers | mathiasvr |

## Links

- npm: https://www.npmjs.com/package/process-fast
- Repository: https://github.com/mathiasvr/process-fast
- Homepage: https://github.com/mathiasvr/process-fast#readme
- Issues: https://github.com/mathiasvr/process-fast/issues
- npm.io page: https://npm.io/package/process-fast

## Recent versions

- 1.0.0 (latest) — 2020-11-20

## README

# process-fast

[![NPM](https://img.shields.io/npm/v/process-fast.svg?style=for-the-badge)](https://npm.im/process-fast)
![Downloads](https://img.shields.io/npm/dt/process-fast.svg?style=for-the-badge)
![Dependency status](https://img.shields.io/librariesio/release/npm/process-fast?style=for-the-badge)
[![license](https://img.shields.io/:license-MIT-blue.svg?style=for-the-badge)](https://mvr.mit-license.org)

Fast node `require('process')` for modern browsers.

Inspired by [process](https://npm.im/process) but painfully simple - using`queueMicrotask` 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

```shell
$ npm install process-fast
```

## Example
Shim with webpack:

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

---
_Source: https://npm.io/package/process-fast · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
