# console.star

> Console.star is a helper function to call console.log with stars pre/post-appended to the log

Latest version **0.0.1** (published 2014-07-19) · BSD-2-Clause license · 0 weekly downloads

## Install

```sh
npm install console.star
pnpm add console.star
yarn add console.star
bun add console.star
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2014-07-19 |
| First published | 2014-07-19 |
| Weekly downloads | 0 |
| License | BSD-2-Clause |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Tyler Stark |
| Maintainers | theirondeveloper |
| Keywords | console.log, devtools |

## Links

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

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads
- [child-process-debug](https://npm.io/package/child-process-debug.md) — 695 weekly downloads

## Recent versions

- 0.0.1 (latest) — 2014-07-19
- 0.0.0 — 2014-07-19

## README

# Console.Star

Console.star is a helper function to call console.log with stars pre/post-appended to the log

Install:
```
npm install console.star --save-dev
```

Usage:
```javascript
console.star('Hello %s', 'World');

// Result:
// ***************
// ***************
// Hello World
// ***************
// ***************
```

Updating Defaults:
```javascript
console.starOptions = {
	'starString': '***************', // Update the stars 
	'lines': 2, // Update the number of lines the stars appear
	'logType': 'log' // Update the console logger type (log, warn, error, etc.)
};
```

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