An open API service indexing awesome lists of open source software.

https://github.com/luisvinicius167/dutier-logger

Logger for Dutier
https://github.com/luisvinicius167/dutier-logger

dutier logger logger-middleware

Last synced: 3 months ago
JSON representation

Logger for Dutier

Awesome Lists containing this project

README

        

[](https://github.com/luisvinicius167/dutier)

Logger for Dutier, inspired by Redux Logger.

[![npm package](https://img.shields.io/badge/npm-0.0.1-blue.svg)](https://www.npmjs.com/package/dutier-logger)
[![CDN](https://img.shields.io/badge/cdn-0.0.1-ff69b4.svg)](https://unpkg.com/[email protected])

![dutier-logger](http://i.imgur.com/CgAuHlE.png)

Check out [Dutier](https://github.com/luisvinicius167/dutier), the async and powerfull state management solution for Javascript applications.

### Install
* NPM: ``` npm install dutier-logger ```
* CDN: ```https://unpkg.com/[email protected]```

## Getting Started
```javascript
/**
* @name Logger
* @description Each time you dispatch actions,
* will log the prev state, action and nex state
* on your console for you
*/

import { applyMiddleware } from 'dutier'
import Logger from 'dutier-logger'

applyMiddleware(Logger);

```

#### License
MIT License.