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

https://github.com/checksumdev/clog

Checksum's typescript logging library.
https://github.com/checksumdev/clog

clog library log logging logging-library simple typescript

Last synced: 11 months ago
JSON representation

Checksum's typescript logging library.

Awesome Lists containing this project

README

          




pypi
pypi

#

Checksum's typescript logging library. 🎉

This is a `javascript`/`typescript` module in active development for logging things to the console in a stylish and optimized way without having the hassle of building your own logging system for every app you create!

## Example

See other usages in the typescript type defintions

```typescript
import Clog from "@checksumdev/clog"; // Import Clog
const clog = new Clog(); // Instantiate Clog (its faster this way)

clog.log("Hello World!"); // outputs "Hello World!" in green text
```

### Output

clog.log("Hello World!");
-> [12:00:00] [INFO] Hello World!