Node.JS找不到节点调度模块

时间:2014-03-12 18:57:50

标签: json node.js package node-modules nodejitsu

好的,我已经阅读了数十个类似的问题,但没有一个能够解决我的问题 - 主要是因为我认为我的问题更深一些。

我的服务器(Nodejitsu)上有几个模块工作正常,我认为我安装的方式是:npm install express / connect / mongojs等...

在我的server.js中:

var express = require('express');
var team = require('./team');
var users = require('./users');
var scheduler = require('node-schedule');

现在我试图让node-schedule模块工作,所以我通过npm 安装,而在我的server.js文件的目录中模块确实进入了node_modules文件夹但是当我部署时我的应用程序我明白了:

error:   module.js:340
error:       throw err;
error:             ^
error:   Error: Cannot find module 'node-schedule'
error:       at Function.Module._resolveFilename (module.js:338:15)
error:       at Function.Module._load (module.js:280:25)
error:       at Module.require (module.js:364:17)
error:       at require (module.js:380:17)
error:       at Object.<anonymous> (/opt/run/snapshot/package/server.js:5:1)
error:       at Module._compile (module.js:456:26)
error:       at Object.Module._extensions..js (module.js:474:10)
error:       at Module.load (module.js:356:32)
error:       at Function.Module._load (module.js:312:12)
error:       at Function.Module.runMain (module.js:497:10)

我认为我的问题可能与我的package.json文件有关,这个文件几乎是空的:

 {
      "name": "wePlay",
      "subdomain": "wePlay",
      "scripts": {
        "start": "node server.js"
      },
      "version": "0.0.0-203",
      "engines": {
        "node": "0.10.x"
      }
}

现在我在我的node_modules文件夹中有几个模块,如我所提到的(express,mongojs ..),当我部署时它们都工作正常,即使我们的package.json文件中没有提到它们 - 但现在这个新模块,没有... 我已尝试(基于过去的主题)用-g安装它,但仍然没有,我还尝试连接它,没有...

我发现存在问题,因为当我尝试部署我的应用时,我会看到这个应用正在部署:

connect@2.7.3 node_modules/connect
├── fresh@0.1.0
├── pause@0.0.1
├── cookie-signature@0.0.1
├── bytes@0.2.0
├── buffer-crc32@0.1.1
├── cookie@0.0.5
├── debug@0.7.2
├── send@0.1.0 (range-parser@0.0.4, mime@1.2.6)
├── formidable@1.0.11
└── qs@0.5.1

express@3.2.2 node_modules/express
├── methods@0.0.1
├── fresh@0.1.0
├── range-parser@0.0.4
├── cookie-signature@1.0.1
├── qs@0.6.3
├── buffer-crc32@0.2.1
├── cookie@0.0.5
├── debug@0.7.2
├── commander@0.6.1
├── mkdirp@0.3.4
├── send@0.1.0 (mime@1.2.6)
└── connect@2.7.8 (pause@0.0.1, bytes@0.2.0, formidable@1.0.13)

nodemailer@0.4.4 node_modules/nodemailer
├── simplesmtp@0.3.1 (xoauth2@0.1.8, rai@0.1.7)
└── mailcomposer@0.1.33 (mime@1.2.9, mimelib@0.2.12)

mongojs@0.7.5 node_modules/mongojs
├── thunky@0.1.0
├── readable-stream@1.0.2
└── mongodb@1.3.6 (kerberos@0.0.2, bson@0.1.8)

所以很明显节点计划不存在。 我似乎无法理解 a)当我的server.js package.json为空时,我是如何使原始模块工作的... b)当坐在那里,旁边表达连接和mongojs时,怎么可能要求找不到它...

1 个答案:

答案 0 :(得分:1)

这在本地主机上对我有用:

这样做之后:npm install node-schedule --save

您在node_modules下有schedule.js文件。

var scheduler = require('./ node_modules / node-schedule / lib / schedule.js');