node.js - How to install forever-monitor module using npm in ubuntu -
in application want restart node js server programmatically.for need install forever-monitor while installing module using npm im getting error "no compatible version found: forever-monitor".my node version v 0.6.17.can fix issue.
you need upgrade 0.8 atleast. forever-monitor requires node 0.8.x. see here.
you can check node version required particular package looking engine
field
npm view forever-monitor { name: 'forever-monitor', description: 'core forever process monitor', 'dist-tags': { latest: '1.1.0' }, ... engines: { node: '0.8.x' },
Comments
Post a Comment