An open API service indexing awesome lists of open source software.

https://github.com/cebbinghaus/lipe

A Flexible logger for node written in Typescript
https://github.com/cebbinghaus/lipe

console hacktoberfest logger logging typescript

Last synced: 6 months ago
JSON representation

A Flexible logger for node written in Typescript

Awesome Lists containing this project

README

          

# Lipe

A simple logging library that lets you extend and customize it to your hearts content.

# Install

```
$ npm i lipe
```

# Basic Usage

```js
const {default: Logger} = require("lipe");
const {Console} = require("lipe/defaults");

// Create a new Logger instance
const logger = new Logger();

// Pipe everything to the console output
logger.pipe.Pipe(Console());

// Log Hello World
logger.Log("Hello World!");
```

More documentation is being worked on.

Copyright ©️ CEbbinghaus 2023