最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - regeneratorRuntime is not defined when using asyncawait - Stack Overflow

programmeradmin1浏览0评论

I am getting a

"regeneratorRuntime is not defined"

when trying to use async/await in a project.

My babelrc file is this currently:

{
    "presets": ["env", "react"],
    "plugins": [
        "transform-runtime",
        "transform-object-rest-spread"
    ]
}

and my package.json is:

{
    "name": "****",
    "version": "1.0.0",
    "description": "****",
    "main": "index.js",
    "author": "****",
    "license": "UNLICENSED",
    "private": true,
    "scripts": {
        "start": "yarn build && nodemon server/index.js --ignore dist/ --ignore public/",
        "watch": "parcel watch public/index.html --public-url /",
        "build": "parcel build public/index.html --public-url /",
        "test": "jest"
    },
    "dependencies": {
        "@babel/runtime": "^7.5.5",
        "axios": "^0.19.0",
        "express": "^4.17.1",
        "express-validator": "^6.1.1",
        "react": "^16.9.0",
        "react-dom": "^16.9.0",
        "super-reset-css": "^1.0.5"
    },
    "devDependencies": {
        "babel-core": "^6.26.3",
        "babel-plugin-transform-object-rest-spread": "^6.26.0",
        "babel-plugin-transform-runtime": "^6.23.0",
        "babel-preset-env": "^1.7.0",
        "babel-preset-react": "^6.24.1",
        "jest": "^24.8.0",
        "nodemon": "^1.14.11",
        "parcel-bundler": "^1.5.1",
        "sass": "^1.22.9"
    }
}

I'm sort of new to configuring babel so not sure what to do here.

I am getting a

"regeneratorRuntime is not defined"

when trying to use async/await in a project.

My babelrc file is this currently:

{
    "presets": ["env", "react"],
    "plugins": [
        "transform-runtime",
        "transform-object-rest-spread"
    ]
}

and my package.json is:

{
    "name": "****",
    "version": "1.0.0",
    "description": "****",
    "main": "index.js",
    "author": "****",
    "license": "UNLICENSED",
    "private": true,
    "scripts": {
        "start": "yarn build && nodemon server/index.js --ignore dist/ --ignore public/",
        "watch": "parcel watch public/index.html --public-url /",
        "build": "parcel build public/index.html --public-url /",
        "test": "jest"
    },
    "dependencies": {
        "@babel/runtime": "^7.5.5",
        "axios": "^0.19.0",
        "express": "^4.17.1",
        "express-validator": "^6.1.1",
        "react": "^16.9.0",
        "react-dom": "^16.9.0",
        "super-reset-css": "^1.0.5"
    },
    "devDependencies": {
        "babel-core": "^6.26.3",
        "babel-plugin-transform-object-rest-spread": "^6.26.0",
        "babel-plugin-transform-runtime": "^6.23.0",
        "babel-preset-env": "^1.7.0",
        "babel-preset-react": "^6.24.1",
        "jest": "^24.8.0",
        "nodemon": "^1.14.11",
        "parcel-bundler": "^1.5.1",
        "sass": "^1.22.9"
    }
}

I'm sort of new to configuring babel so not sure what to do here.

Share Improve this question edited Aug 18, 2019 at 4:20 ravibagul91 20.8k6 gold badges38 silver badges61 bronze badges asked Aug 18, 2019 at 4:00 Sandra WillfordSandra Willford 3,80915 gold badges53 silver badges101 bronze badges 2
  • Does this stack question help you out? It contains answers for Babel 6 and 7. I think you are also mixing babel major versions here for @babel/runtime and babel-plugin-transform-runtime etc. . – ford04 Commented Aug 20, 2019 at 9:14
  • Found the answer here – MarshHawk Commented Mar 2, 2020 at 1:58
Add a ment  | 

3 Answers 3

Reset to default 9

I fixed a similar problem using the following post

Try the following in .babelrc:

{
  "presets": ["@babel/preset-env"],
  "plugins": [
    "@babel/plugin-transform-runtime"
    ], 
...

with the following dev dependencies: @babel/plugin-transform-runtime @babel/runtime

I think it is because you are using @babel/runtime.

My set up is @babel/runtime, @babel/core, @babel/plugin-transform-runtime and in the .bablerc set

"plugins": ["@babel/transform-runtime"]

I hope this helps.

You can use the Bable Plugin @babel/plugin-transform-runtime as answered by others - but all it does is to import "regenerator-runtime/runtime".

You can just add this line to your script and you are ready to go:

import "regenerator-runtime/runtime";
发布评论

评论列表(0)

  1. 暂无评论