Skip to content

Latest commit

 

History

History
 
 

babel-plugin-transform-async-to-module-method

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

babel-plugin-transform-async-to-module-method

Turn async functions into a Bluebird coroutine

Installation

$ npm install babel-plugin-transform-async-to-module-method

Usage

Via .babelrc (Recommended)

.babelrc

// without options
{
  "plugins": ["transform-async-to-module-method"]
}

// with options
{
  "plugins": [
    ["transform-async-to-module-method", {
      "module": "bluebird",
      "method": "coroutine"
    }]
  ]
}

Via CLI

$ babel --plugins transform-async-to-module-method script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-async-to-module-method"]
});