summaryrefslogtreecommitdiffstats
path: root/node_modules/process/README.md
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/process/README.md
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm 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 6570729..0000000
--- 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.
-
-