47 lines
688 B
Markdown
47 lines
688 B
Markdown
# babel-plugin-transform-async-to-module-method
|
|
|
|
Turn async functions into a Bluebird coroutine
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
$ npm install babel-plugin-transform-async-to-module-method
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Via `.babelrc` (Recommended)
|
|
|
|
**.babelrc**
|
|
|
|
```js
|
|
// without options
|
|
{
|
|
"plugins": ["transform-async-to-module-method"]
|
|
}
|
|
|
|
// with options
|
|
{
|
|
"plugins": [
|
|
["transform-async-to-module-method", {
|
|
"module": "bluebird",
|
|
"method": "coroutine"
|
|
}]
|
|
]
|
|
}
|
|
```
|
|
|
|
### Via CLI
|
|
|
|
```sh
|
|
$ babel --plugins transform-async-to-module-method script.js
|
|
```
|
|
|
|
### Via Node API
|
|
|
|
```javascript
|
|
require("babel-core").transform("code", {
|
|
plugins: ["transform-async-to-module-method"]
|
|
});
|
|
```
|