1. babel-plugin-transform-async-to-generator
Turn async functions into ES2015 generators
babel-plugin-transform-async-to-generator
Package: babel-plugin-transform-async-to-generator
Created by: babel
Last modified: Mon, 13 Jun 2022 04:04:02 GMT
Version: 6.24.1
License: MIT
Downloads: 5,011,843
Repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator

Install

npm install babel-plugin-transform-async-to-generator
yarn add babel-plugin-transform-async-to-generator

babel-plugin-transform-async-to-generator

Turn async functions into ES2015 generators

Example

In

 async function foo() {
  await bar();
}

Out

 var _asyncToGenerator = function (fn) {
  ...
};
var foo = _asyncToGenerator(function* () {
  yield bar();
});

Installation

 npm install --save-dev babel-plugin-transform-async-to-generator

Usage

Via .babelrc (Recommended)

.babelrc

 {
  "plugins": ["transform-async-to-generator"]
}

Via CLI

 babel --plugins transform-async-to-generator script.js

Via Node API

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

References

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin