2016-11-04 11 views
0

私は最初のAngular2アプリケーションを作成しました。これをサーバーにデプロイします。私の開発プラットフォームでは、アプリケーションは正常に動作します(Windows上のPycharm)、サーバー上でアプリケーションを実行すると、次のエラーが発生します。何が間違っているのか分かりません。コードは、あなたがsudo権限なしNPMを実行するので、多分それはだhttps://github.com/DamenShipyards/DatabaseChecksFrontendnpmがサーバーで開始できません

C:\DatabaseChecksFrontend>npm start 

> [email protected] start C:\DatabaseChecksFrontend 
> tsc && concurrently "npm run tsc:w" "npm run lite" 

app/app.module.ts(8,30): error TS2307: Cannot find module './check.component'. 
app/app.module.ts(9,31): error TS2307: Cannot find module './groups.component'. 
app/app.module.ts(10,29): error TS2307: Cannot find module './grid.component'. 
app/app.module.ts(11,38): error TS2307: Cannot find module './highlightcode.dire 
ctive'. 

npm ERR! Windows_NT 6.1.7601 
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.9.0 
npm ERR! npm v3.10.8 
npm ERR! code ELIFECYCLE 
npm ERR! [email protected] start: `tsc && concurrently "npm run tsc:w 
" "npm run lite" ` 
npm ERR! Exit status 2 
npm ERR! 
npm ERR! Failed at the [email protected] start script 'tsc && concurr 
ently "npm run tsc:w" "npm run lite" '. 
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 DatabaseChecksFronten 
d package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  tsc && concurrently "npm run tsc:w" "npm run lite" 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR!  npm bugs DatabaseChecksFrontend 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls DatabaseChecksFrontend 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  C:\DatabaseChecksFrontend\npm-debug.log 

答えて

0

で見つけることができます。あなたはNPMから、次の公式ドキュメントでこの問題の詳細を読むことができます:npm permission issue

+0

'sudo'が最適です –

0

アプリのフォルダに./check.component.ts./groups.component.ts./grid.component.ts./highlightcode.directive.tsを命名するファイルはありません。実際に存在するモジュールからは何かをインポートすることしかできません。

汚れたフォルダがあるため、開発している可能性があります。同じリポジトリを別の場所で複製してもう一度実行しようとすると、失敗するはずです。

関連する問題