summaryrefslogtreecommitdiffstats
path: root/node_modules/console-browserify/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/console-browserify/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/console-browserify/README.md')
-rw-r--r--node_modules/console-browserify/README.md42
1 files changed, 0 insertions, 42 deletions
diff --git a/node_modules/console-browserify/README.md b/node_modules/console-browserify/README.md
deleted file mode 100644
index 5b75cbf..0000000
--- a/node_modules/console-browserify/README.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# console-browserify [![Build Status](https://travis-ci.org/browserify/console-browserify.png?branch=master)](https://travis-ci.org/browserify/console-browserify)
-
-Emulate console for all the browsers
-
-## Install
-
-You usually do not have to install `console-browserify` yourself! If your code runs in Node.js, `console` is built in. If your code runs in the browser, bundlers like [browserify](https://github.com/browserify/browserify) or [webpack](https://github.com/webpack/webpack) also include the `console-browserify` module when you do `require('console')`.
-
-But if none of those apply, with npm do:
-
-```
-npm install console-browserify
-```
-
-## Usage
-
-```js
-var console = require("console")
-// Or when manually using console-browserify directly:
-// var console = require("console-browserify")
-
-console.log("hello world!")
-```
-
-## API
-
-See the [Node.js Console docs](https://nodejs.org/api/console.html). `console-browserify` does not support creating new `Console` instances and does not support the Inspector-only methods.
-
-## Contributing
-
-PRs are very welcome! The main way to contribute to `console-browserify` is by porting features, bugfixes and tests from Node.js. Ideally, code contributions to this module are copy-pasted from Node.js and transpiled to ES5, rather than reimplemented from scratch. Matching the Node.js code as closely as possible makes maintenance simpler when new changes land in Node.js.
-This module intends to provide exactly the same API as Node.js, so features that are not available in the core `console` module will not be accepted. Feature requests should instead be directed at [nodejs/node](https://github.com/nodejs/node) and will be added to this module once they are implemented in Node.js.
-
-If there is a difference in behaviour between Node.js's `console` module and this module, please open an issue!
-
-## Contributors
-
- - Raynos
-
-## License
-
-[MIT](./LICENSE)