IBM bluemix上的ES6模块语法支持

时间:2016-10-15 13:40:25

标签: node.js ecmascript-6 ibm-cloud devops es6-modules

我有一个使用ES6导入语句的应用。我尝试在ibm cloudfoundry上部署它。日志显示它从节点6.8.0开始。该应用程序抱怨:

 Unexpected token import

我在Windows 10桌面上启动了应用程序,节点为6.8.0,运行完美无缺。我跑了:

console.log(process.versions);

这是输出:

{ http_parser: '2.7.0',
  node: '6.8.0',
  v8: '5.1.281.84',
  uv: '1.9.1',
  zlib: '1.2.8',
  ares: '1.10.1-DEV',
  icu: '57.1',
  modules: '48',
  openssl: '1.0.2j' }

在我的应用程序运行的机器上以及在它没有的bluemix服务器上输出相同。这是我的Package.json:

    {
  "name": "bluemixtest",
  "version": "0.0.0",
  "main": "server/app.js",
  "dependencies": {
  },
  "devDependencies": {
  },
  "engines": {
    "node": "6.8.0"
  },
  "scripts": {
    "start": "node --harmony_modules server/app.js"
  },
  "private": true
}

服务器/ app.js:

'use strict';
import express from 'express';
import mongoose from 'mongoose';

日志中的启动错误:

/home/vcap/app/server/app.js:7
import express from 'express';
^^^^^^
SyntaxError: Unexpected token import
    at Object.exports.runInThisContext (vm.js:76:16)
    at Module._compile (module.js:542:28)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.runMain (module.js:604:10)
    at run (bootstrap_node.js:394:7)
    at startup (bootstrap_node.js:149:9)
    at bootstrap_node.js:509:3
npm ERR! Linux 3.19.0-33-generic
npm ERR! argv "/home/vcap/app/vendor/node/bin/node" "/home/vcap/app/vendor/node/bin/npm" "start"
npm ERR! node v6.8.0
npm ERR! npm  v3.10.8
npm ERR! code ELIFECYCLE
npm ERR! bluemixtest@0.0.0 start: `node --harmony server/app.js`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the bluemixtest@0.0.0 start script 'node --harmony server/app.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the bluemixtest package,
npm ERR! not with npm itself.

1 个答案:

答案 0 :(得分:2)

虽然es6标准定义了import语句,但本地(尚未)节点不支持它。 "Import" ES6 for Node

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import