# console-browserify

> Emulate console for all the browsers

Latest version **1.2.0** (published 2019-10-28) · 0 weekly downloads

## Install

```sh
npm install console-browserify
pnpm add console-browserify
yarn add console-browserify
bun add console-browserify
```

## 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.2.0 |
| Published | 2019-10-28 |
| First published | 2013-01-27 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 10 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 33 |
| Author | Raynos |
| Maintainers | ahdinosaur, anandthakker, ashaffer88, balupton, bpostlethwaite, bret, cwmma, defunctzombie, dominictarr, elnounch, emilbayes, feross, forbeslindesay, fpereira1, garann, gkatsev, goto-bus-stop, hughsk, indutny, jmm, jprichardson, jryans, leichtgewicht, lukechilds, mafintosh, mattdesl, maxogden, mellowmelon, parshap, pkrumins, raynos, sethvincent, stevemao, substack, tehshrike, terinjokes, thlorenz, ungoldman, yerkopalma, yoshuawuyts, zertosh |

## Links

- npm: https://www.npmjs.com/package/console-browserify
- Repository: https://github.com/browserify/console-browserify
- Issues: https://github.com/browserify/console-browserify/issues
- npm.io page: https://npm.io/package/console-browserify

## Recent versions

- 1.2.0 (latest) — 2019-10-28
- 1.1.0 — 2014-04-08
- 1.0.3 — 2013-12-13
- 1.0.2 — 2013-12-13
- 1.0.1 — 2013-09-23
- 0.1.6 — 2013-02-05
- 0.1.5 — 2013-01-30
- 0.1.4 — 2013-01-29
- 0.1.3 — 2013-01-27
- 0.1.2 — 2013-01-27
- 0.1.1 — 2013-01-27
- 0.1.0 — 2013-01-27

## README

# 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)

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