简体   繁体   中英

Babel NodeJS ES6: SyntaxError: Unexpected token export

I'm trying to use babel to run my NodeJS program, which includes ES6 syntax and exports from the Colyseus library. However, when I run the command:

babel-node server.js

The following error message appears:

export class MyRoom extends colyseus.Room {
^^^^^^

SyntaxError: Unexpected token export

Below is my package.json file:

{
  "name": "app",
  "version": "1.0.0",
  "description": "a description",
  "main": "server.js",
  "scripts": {
    "test": "babel-node server.js",
    "build": "babel-node server.js"
  },
  "author": "henryzhu",
  "license": "ISC",
  "dependencies": {
    "actionhero": "^19.1.2",
    "colyseus": "^0.9.33",
    "easytimer.js": "^2.3.0",
    "express": "^4.16.3",
    "socket.io": "^2.1.0",
    "socketio": "^1.0.0",
    "uniqid": "^5.0.3"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "babel-preset-es2015": "^6.24.1"
  }
}

Below is my server.js file:

var colyseus = require("colyseus");
var http = require("http");
var express = require("express");
var port = process.env.port || 3000;

var app = express();

app.use(express.static("public", { dotfiles: 'allow' }));

var gameServer = new colyseus.Server({
  server: http.createServer(app)
});

export class MyRoom extends colyseus.Room {
    // When room is initialized
    onInit (options) { }

}

gameServer.listen(port);

Add a config file with the following ( .babel.config.js ):

module.exports = {
    presets: [
        '@babel/preset-env'
    ]
};

Then run:

babel-node --config-file .babel.config.js server.js

babel-node is presumably expecting the node style module syntax:

module.exports = ...

instead of the es6 style:

export class ...

EDIT:

You might be able to fix it by specifying a .babelrc file like so:

{
    "presets": ["env"]
}

with package babel-preset-env installed

Adding a config file (babel.config.js) below worked for me. Also, the order is important. presets should be before all the plugins.

module.exports = {
     presets: [['@babel/preset-env',{targets: {node: 
        'current',},loose:true,},],],
     plugins: [
        '@babel/plugin-syntax-dynamic-import',
        '@babel/plugin-syntax-import-meta',
        [
        '@babel/plugin-transform-runtime',
        {
           useESModules: true,
        },
     ],
    ],
  };

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM