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
- Host: GitHub
- URL: https://github.com/cebbinghaus/lipe
- Owner: CEbbinghaus
- License: gpl-3.0
- Created: 2021-08-28T11:00:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T13:41:48.000Z (almost 2 years ago)
- Last Synced: 2025-03-16T17:06:17.636Z (over 1 year ago)
- Topics: console, hacktoberfest, logger, logging, typescript
- Language: TypeScript
- Homepage: https://lipejs.com
- Size: 1.22 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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