# fancy-logger

> Customized web-tools logging system to comfort develop

Latest version **1.0.0** (published 2016-08-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install fancy-logger
pnpm add fancy-logger
yarn add fancy-logger
bun add fancy-logger
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-08-12 |
| First published | 2016-08-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Sergey Zhitenev |
| Maintainers | legendary |
| Keywords | log, web, tools, chrome, logging |

## Links

- npm: https://www.npmjs.com/package/fancy-logger
- Repository: https://github.com/falendary/fancy-logger
- Homepage: https://github.com/falendary/fancy-logger#readme
- Issues: https://github.com/falendary/fancy-logger/issues
- npm.io page: https://npm.io/package/fancy-logger

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [@luma.gl/experimental](https://npm.io/package/@luma.gl/experimental.md) — 77.1K weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-08-12

## README

# Fancy logger
Customized web-tools logging system to comfort develop

## DEMO

## Light theme
![alt text](http://i.imgur.com/WYU7IfN.jpg "Light")

## Dark theme
![alt text](http://i.imgur.com/lf2TvPO.jpg "dark")

## Install
### NPM
```sh
npm install fancy-logger
```
## How to use
Just call fancyLogger with proper method 
 ```sh
var data = [{...}, {...}, ...]
fancyLogger.collection('MyData', data);
 ```
## List of methods

#### .controller
Print controller status
 ```sh
fancyLogger.controller(controllerName, message, importance, customCSS)
 ```
#### .collection 
 Print collection
 ```sh
fancyLogger.collection(collectionName, collection, importance, customCSS)
 ```
 
   #### .property 
 Print property value
 ```sh
fancyLogger.property(propertyName, property, importance, customCSS)
 ```
 
 #### .component 
 Print component
 ```sh
fancyLogger.collection(componentName, component, importance, customCSS)
 ```
 
   #### .service 
 Print service status
 ```sh
fancyLogger.service(serviceName, message, importance, customCSS)
 ```
 
 ## Warning
 
 Passing custom css disables **importance** (describes opacity of log) property

---
_Source: https://npm.io/package/fancy-logger · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
