# creepy-logger

> A simple wrapper module around the standard console.log

Latest version **1.1.0** (published 2016-02-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install creepy-logger
pnpm add creepy-logger
yarn add creepy-logger
bun add creepy-logger
```

## 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.1.0 |
| Published | 2016-02-11 |
| First published | 2016-02-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ali Imtiaz |
| Maintainers | aimtiaz |

## Links

- npm: https://www.npmjs.com/package/creepy-logger
- npm.io page: https://npm.io/package/creepy-logger

## Dependencies (2)

- [lodash](https://npm.io/package/lodash.md) ^4.3.0
- [dateformat](https://npm.io/package/dateformat.md) ^1.0.12

## Recent versions

- 1.1.0 (latest) — 2016-02-11
- 1.0.0 — 2016-02-11

## README

# creepy-logger
creepy-logger is a simple logging node module that wraps around the standard console.log.

## Usage

Download creepy-logger using npm:
```
npm install creepy-logger
```

Add to your node application: 

```javascript
var logger = require('creepy-logger');

logger.info('logging information');

```

Output:

> ai@au10019:~/gitstuff/$ node test.js 

> 11-Feb-2016 16:07:55 INFO logging information

You can optionally use `warn` and `error` to log warning and error messages.

## Methods
1. `logger.info` - Log information
2. `logger.warn` - Log warning messages
3. `loggger.error`  Log error messages
 

# License

(The MIT License)

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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