Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/oligot/rollup-plugin-nodent

Rollup plugin for ES2017 async/await keywords
https://github.com/oligot/rollup-plugin-nodent

Last synced: 5 days ago
JSON representation

Rollup plugin for ES2017 async/await keywords

Awesome Lists containing this project

README

        

# rollup-plugin-nodent

Convert ES2017 async/await with [nodent](https://github.com/MatAtBread/nodent)

## Installation

```bash
npm install --save-dev rollup-plugin-nodent
```

## Usage

```js
// rollup.config.js
import nodent from 'rollup-plugin-nodent';

export default {
entry: 'main.js',
dest: 'bundle.js',
format: 'iife',
plugins: [nodent()],
sourceMap: true
};
```

## License

MIT