Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruslanguns/npm-custom-console-logs
https://github.com/ruslanguns/npm-custom-console-logs
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruslanguns/npm-custom-console-logs
- Owner: ruslanguns
- License: mit
- Created: 2019-02-10T18:09:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-26T14:51:23.000Z (4 months ago)
- Last Synced: 2024-07-26T16:36:30.810Z (4 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Custom Console Log
Librería que muestra diferentes mensajes en colores personalizados para hacer referencia a mensajes "ok", "info", "error" e incluso de "aviso".
## Instalación
```
npm i custom-console
```## Uso
Para usar el módulo tenemos que importarlo.
```javascript
var m = require('custom-console');
```
### Mensaje de confirmación "ok"```javascript
m.ok('Los datos se han enviado correctamente');
```### Mensaje de información "info"
```javascript
m.info('Los datos se han enviado correctamente');
```### Mensaje de advertencia "aviso"
```javascript
m.aviso('Los datos se han enviado correctamente aunque no muy rápido');
```### Mensaje de fallo "error"
```javascript
m.error('Los datos NO se han enviado correctamente');
```