https://github.com/nandovejer/console.cool
Console.log() of Javascript with styles
https://github.com/nandovejer/console.cool
Last synced: 2 months ago
JSON representation
Console.log() of Javascript with styles
- Host: GitHub
- URL: https://github.com/nandovejer/console.cool
- Owner: nandovejer
- License: mit
- Created: 2019-10-20T02:01:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-04T16:17:25.000Z (over 1 year ago)
- Last Synced: 2025-02-12T05:59:54.103Z (4 months ago)
- Language: HTML
- Size: 245 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# console-cool

`Console.cool` is a JavaScript library designed to enhance and customize the debugging and logging experience in the browser console. It provides several functions and styles that go beyond the standard JavaScript console capabilities, allowing developers to not only debug their code more effectively, but also to do so in a visually appealing and organized manner.
## How use
Don't forget use first letter **C** uppercase `Console.option(value);`
``` js
// Don't forget uppercase in the first letter
import Console from './console.cool.js';
```## Status Console
**Success**

```javascript
Console.success("Line type Success");
```**Info**

```javascript
Console.info("Line type Info");
```
**Warning**
```javascript
Console.warn("Line type warning");
```**Error**

## Format Console

```javascript
Console.error("Line type error");
```**Italic**
```javascript
Console.italic("Line Italic");
```**Bold**
```javascript
Console.bold("Line Bold");
```**Underline**
```javascript
Console.underline("Line underline");
```**Text Red**
```javascript
Console.red("Line red");
```**Text Blue**
```javascript
Console.blue("Line blue");
```**Text Green**
```javascript
Console.green("Line green");
```## Nerd Console
**Poo**

```javascript
Console.poo("Nerd Time: poo");
```**Gandalf**

```javascript
Console.gandalf("Nerd Time: gandalf");
```**WonderWoman**

```javascript
Console.wonderwoman("Nerd Time: wonderwoman");
```