我试图在我的流星项目中使用apollp堆栈。
meteor add apollo
meteor npm install --save apollo-client apollo-server express
安装apollo堆栈但是当我执行meteor来运行我的项目时会出现错误
/home/xxxxxx/Example/crud/.meteor/local/build/programs/server/packages/modules.js:97872
const graphql_1 = require('graphql');
^^^^^
SyntaxError: Use of const in strict mode.
at/home/xxxxxx/Example/crud/.meteor/local/build/programs/server/boot.js:292:30
at Array.forEach (native)
at Function._.each._.forEach (/home/xxxxxxx/.meteor/packages/meteor-tool/.1.3.4_1.1wjluqr++os.linux.x86_64+web.browser+web.cordova/mt-os.linux.x86_64/dev_bundle/server-lib/node_modules/underscore/underscore.js:79:11)
关于这里发生了什么的任何想法?
答案 0 :(得分:2)
我正在尝试做同样的事情。我想我可以让你进入下一步。只需在你的npm安装中添加一些东西:
meteor npm install --save apollo-client apollo-server@^0.1.1 express graphql
我已经将PR添加到文档中的npm install中。此外,apollo-server最近已更新为0.2,但流星整合为still working on it - 解决此问题后将不再需要@^0.1.1
。我还有一些问题,所以这可能不会让你一路走来,但它为我解决了这个错误。