Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Node.js 未能将meteor应用程序部署到heroku_Node.js_Meteor_Heroku - Fatal编程技术网

Node.js 未能将meteor应用程序部署到heroku

Node.js 未能将meteor应用程序部署到heroku,node.js,meteor,heroku,Node.js,Meteor,Heroku,当我尝试将meteor应用程序部署到heroku时,我收到以下错误消息 有人知道怎么修吗 mypackage.json { "name": "microscope", "engines": { "node": "6.9.2" }, "scripts": { "meteor": "MONGO_URL=mongodb://<username>:<password>@ meteor", "start": "meteor run" }

当我尝试将meteor应用程序部署到heroku时,我收到以下错误消息 有人知道怎么修吗

mypackage.json

{
  "name": "microscope",
   "engines": {
    "node": "6.9.2"
  },
  "scripts": {
  "meteor": "MONGO_URL=mongodb://<username>:<password>@ meteor",

    "start": "meteor run"
  },

  "dependencies": {

    "meteor": "~0.5.2",
    "babel-runtime": "^6.20.0",
    "meteor-node-stubs": "~0.2.0"
  }
}

你能试试这套说明吗,它很管用@NicholasByDesign不幸的是,我收到了同样的错误。为什么你的package.json上写着:“meteor”:“~0.5.2”、???@Giova.panasiti检查这个问题,你就会明白为什么你可以尝试这套说明,它就像一个符咒@NicholasByDesign不幸的是,我收到了相同的错误,为什么你的package.json上写着:“meteor”:“~0.5.2”、???@Giova.panasiti检查这个问题,你就会明白为什么
{
  "name": "microscope",
  "engines": {
    "node": "6.9.2",
    "npm": "3.10.9"
  },
  "scripts": {
    "start": "meteor run"
  },
  "dependencies": {
    "babel-runtime": "^6.20.0",
    "meteor-node-stubs": "~0.2.0"
  }
}