Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/oligot/rollup-plugin-nodent
- Owner: oligot
- Created: 2017-06-06T12:04:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-07T09:42:01.000Z (about 6 years ago)
- Last Synced: 2024-04-29T21:22:45.724Z (6 months ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 27
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome - nodent - Transpile ES2017 `async`/`await`. (Plugins / Transpilation)
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