2016-06-24 11 views
0

ローカルマシンにnpmをインストールし、のサンプルプロジェクトを設定しました。parse server:モジュールが見つかりません。npm startコマンドでエラーが発生しました

は今、私はコマンドを起動しNPMを使用してプロジェクトを実行しようとしたが、それは、index.jsファイル内のコードの行を次のようにエラーが発生します。

var api = new ParseServer({ 
    databaseURI: 'mongodb://XXX', 
    cloud: process.env.CLOUD_CODE_MAIN || __dirname + '\\cloud\\main.js', 
    appId: 'XXX', 
    masterKey: 'XXX', 
    serverURL: 'http://localhost:1337/parse', 
}); 

私は

> [email protected] start F:\parse-server-example-master 
> node index.js 
module.js:442 
    throw err; 
    ^

Error: Cannot find module 'cloud/xxx.js' 
    at Function.Module._resolveFilename (module.js:440:15) 
    at Function.Module._load (module.js:388:25) 
    at Module.require (module.js:468:17) 
    at require (internal/module.js:20:19) 
    at Object.<anonymous> (F:\parse-server-example-master\cloud\main.js:3:1) 
    at Module._compile (module.js:541:32) 
    at Object.Module._extensions..js (module.js:550:10) 
    at Module.load (module.js:458:32) 
    at tryModuleLoad (module.js:417:12) 
    at Function.Module._load (module.js:409:3) 

npm ERR! Windows_NT 6.3.9600 
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\ 
node_modules\\npm\\bin\\npm-cli.js" "start" 
npm ERR! node v6.2.2 
npm ERR! npm v3.9.5 
npm ERR! code ELIFECYCLE 
npm ERR! [email protected] start: `node index.js` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] start script 'node index.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 parse-server-example 
package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node index.js 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR!  npm bugs parse-server-example 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls parse-server-example 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  F:\parse-server-example-master\np 
m-debug.log 

コマンドラインでその寄付次のエラー

F:\parse-server-example-master>npm start 

以下どのように私はこのエラーを解決することができるようにコマンドを実行しますか?

+1

> npm installを使用してnpmを再インストールしようとしましたか? –

+1

次https://github.com/ParsePlatform/parse-server-example https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide –

+0

@JigneshPatel私が試してみましたを通過してください再インストールしても同じ問題が残っています。 –

答えて

0

あなたが提供した以下のコードでは、\の代わりに/を使用してみてください。指定されたコードの残りの部分は、パスを定義するときにスラッシュを使用しています。また、スラッシュを1つだけ使用してみてください。

cloud: process.env.CLOUD_CODE_MAIN || __dirname + '\\cloud\\main.js', 
関連する問題