I want to install the following node.js dashboard package but the instructions are confusing. I followed the instructions at the bottom of this link:
https://www.npmjs.com/package/monitor
...I used these two commands:
npm install monitor-dashboard
npm start monitor-dashboard
However, there are no instructions as to what is suppose to go into the start script. My application entry is app.js
Also, I am unclear if I need to install the monitor
package before monitor-dashboard
or if the monitor-dashboard
package has everything I need.
Suggested action:
Try running
node node_modules/monitor-dashboard/monitor.js
in your terminal from the directory that contains yournode_modules
.Explanation:
The instructions at http://lorenwest.github.io/monitor-dashboard/ say to run the following code:
I believe what it wants to happen is to run the
npm start
command for themonitor-dashboard
dependency we installed. However, your project'spackage.json
doesn't know HOW to run thatstart monitor-dashboard
command.So, I did a little digging and found that the
package.json
formonitor-dashboard
wants to runnode monitor.js
. Instead of askingmonitor-dashboard
to run that command, we're just doing it manually from the root directory of our project.