aboutsummaryrefslogtreecommitdiff
path: root/node_modules/process/README.md
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/process/README.md
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/process/README.md')
-rw-r--r--node_modules/process/README.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/node_modules/process/README.md b/node_modules/process/README.md
deleted file mode 100644
index 6570729b2..000000000
--- a/node_modules/process/README.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# process
-
-```require('process');``` just like any other module.
-
-Works in node.js and browsers via the browser.js shim provided with the module.
-
-## browser implementation
-
-The goal of this module is not to be a full-fledged alternative to the builtin process module. This module mostly exists to provide the nextTick functionality and little more. We keep this module lean because it will often be included by default by tools like browserify when it detects a module has used the `process` global.
-
-It also exposes a "browser" member (i.e. `process.browser`) which is `true` in this implementation but `undefined` in node. This can be used in isomorphic code that adjusts it's behavior depending on which environment it's running in.
-
-If you are looking to provide other process methods, I suggest you monkey patch them onto the process global in your app. A list of user created patches is below.
-
-* [hrtime](https://github.com/kumavis/browser-process-hrtime)
-* [stdout](https://github.com/kumavis/browser-stdout)
-
-## package manager notes
-
-If you are writing a bundler to package modules for client side use, make sure you use the ```browser``` field hint in package.json.
-
-See https://gist.github.com/4339901 for details.
-
-The [browserify](https://github.com/substack/node-browserify) module will properly handle this field when bundling your files.
-
-