# colorful-console

> Colorful Console

Latest version **1.0.0** (published 2014-11-19) · 0 weekly downloads

## Install

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

## 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 | 2014-11-19 |
| First published | 2014-11-19 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | scaret |

## Links

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

## Recent versions

- 1.0.0 (latest) — 2014-11-19

## README

# colorfulConsole

make console outputs colorful in both terminal and browser.

Similar to (colour.js)[https://github.com/dcodeIO/colour.js]

## Usage in Node JS:

```javascript
	var colorfulConsole = require('colorfulConsole');
	colorfulConsole.bold().red().log("Printed in Bold and Red");
	colorfulConsole.green("[green tag]").pink("[pink tag]").log("Plain Text");
	colorfulConsole.cyanBg("Background").blueBg("Supported").log();
```

## Usage in Browser:
```html
<!DOCTYPE html>
<html>
<body>
Open Chrome Console To See the output
<script src="colorfulConsole.js"></script>
<script>
    colorfulConsole.red("Red")
            .bold().green("Bold and Green")
            .yellow().bold().blackBg("Yellow, Bold, Black Background")
            .info("Normal console.info()");
</script>
</body>
</html>
```

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