Module.js无法加载server.js

时间:2016-11-30 04:51:40

标签: javascript node.js openshift

我使用node.js做了一个小项目,用Discord做了一些事情。当我使用node server.jsnpm start在本地运行它时,它工作正常。我决定将我的项目放在网上以查看某个功能是否有效。当我上传它时,找不到启动所有内容的主要javascript文件(server.js)。

I just want to be clear that Module.js is not something I made, but part of the node.js built in modules. It's the thing that makes the require function what it is.

所有荣耀中的错误:

module.js:472
    throw err;
    ^
Error: Cannot find module '/var/lib/openshift/583e028e2d52714d2500041/approot/runtime/repo/server.js'
    at Function.Module._resolveFilename (module.js:470:15)
    at Function.Module._load (module.js:418:25)
    at Module.runMain (module.js:605:10)
    at run (bootstrap_node.js:420:7)
    at startup (bootstrap_node.js:139:9)
    at bootstrap_node.js:535:3

的package.json:

{
  "name": "app",
  "version": "0.0.1",
  "description": "test",
  "scripts": { 
    "start": "node --use_strict server.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "main": "server.js",
  "keywords": [
    "discord",
  ],
  "author": "kert",
  "license": "ISC",
  "dependencies": {
    "express": "^4.14.0",
    "discord.js": "7.0.0"
  },
  "engines" : {
    "node" : "6.9.1"
  }
} 

文件结构:

Discord
└─── .git
└─── node_modules
└─── rbservers <-nothing is used in this folder
└─── app.js
└─── package.json
└─── server.js

如果有人能指出我忘记了什么愚蠢的事情,请祈祷告诉。

我在OpenShift上的盒式磁带是'Node.js自动更新'。

1 个答案:

答案 0 :(得分:0)

显然,git没有暂存/提交所有文件以便推送它们。我将不得不四处寻找如何解决这个问题。

呃。