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.
- Host: GitHub
- URL: https://github.com/checksumdev/clog
- Owner: ChecksumDev
- License: gpl-3.0
- Created: 2021-07-12T02:31:24.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-08T02:05:22.000Z (almost 5 years ago)
- Last Synced: 2025-07-30T08:27:52.320Z (11 months ago)
- Topics: clog, library, log, logging, logging-library, simple, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@checksumdev/clog
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
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!