https://github.com/vuelancer/color-deno
Deno library for printing colored logs
https://github.com/vuelancer/color-deno
color color-deno deno deno-library deno-module third-party-libraries
Last synced: about 1 month ago
JSON representation
Deno library for printing colored logs
- Host: GitHub
- URL: https://github.com/vuelancer/color-deno
- Owner: Vuelancer
- License: mit
- Created: 2020-06-01T07:31:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-01T11:30:43.000Z (about 6 years ago)
- Last Synced: 2025-02-25T00:09:23.538Z (over 1 year ago)
- Topics: color, color-deno, deno, deno-library, deno-module, third-party-libraries
- Language: TypeScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# color-deno
> **Colorlog** is a Deno library for printing colored logs for messages like success, error, warning.
[](https://github.com/denoland/deno)
## Examples
```ts
import {
error,
success,
warning,
errorLog,
successLog,
warningLog,
} from 'https://deno.land/x/colorlog/mod.ts';
console.log(error('Error!'));
console.log(success('Success!'));
console.log(warning('Warning!'));
errorLog('Error');
successLog('Success');
warningLog('Warning');
```