rishipr / teams

Work management platform for teams, inspired by Asana and built using a full JavaScript stack
95 stars 54 forks source link

nodemon issue #2

Open cloudchallengers opened 5 years ago

cloudchallengers commented 5 years ago

Hi,

Nodemon is used in this repo to run the server side app, but nodemon is not listed under dependencies section anywhere. So when trying to up server is just breaks due to non-availability of nodemon.

Following is the error stack trace.

[0] > nodemon server.js [0] [1] [1] > teams@1.0.0 client E:\workspace\rapidhelpfront [1] > npm start --prefix client [1] [0] 'nodemon' is not recognized as an internal or external command, [0] operable program or batch file. [0] npm ERR! code ELIFECYCLE [0] npm ERR! errno 1 [0] npm ERR! teams@1.0.0 server: nodemon server.js [0] npm ERR! Exit status 1 [0] npm ERR! npm ERR! Failed at the teams@1.0.0 server script. [0] npm ERR! This is probably not a problem with npm. There is likely additional logging output above. [0] [0] npm ERR! A complete log of this run can be found in: [0] npm ERR! C:\Users\admin\AppData\Roaming\npm-cache_logs\2019-09-08T17_32_21_245Z-debug.log [0] npm run server exited with code 1

Should I raise a pull request with fix ?

Thanks.

ya332 commented 4 years ago

You could do npm install --save nodemon

realDerekTan commented 4 years ago

Nodemon is not installed on your computer. Install it with either npm install nodemon or yarn add nodemon in the root directory.