I am trying to run a node script that launches other scripts in a child directory ./host using forever-monitor.
On windows this works
var child = new (forever.Monitor)('host.js', {
max: 1,
silent: false,
options: [],
cwd:"./host"
});
On linux I get
/home/ec2-user/test/node_modules/forever-monitor/node_modules/broadway/node_modules/eventemitter2/lib/eventemitter2.js:283
throw arguments[1]; // Unhandled 'error' event
^
Error: Target script does not exist: host.js
at /home/ec2-user/test/node_modules/forever-monitor/lib/forever-monitor/monitor.js:144:26
at process._tickCallback (node.js:415:13)
at Function.Module.runMain (module.js:499:11)
at startup (node.js:119:16)
at node.js:901:3
If I change the first line to var child = new (forever.Monitor)('./host/host.js', {
I now get
Error: Cannot find module '/home/ec2-user/test/host/host/host.js'
if I use child = new (forever.Monitor)('/home/ec2-user/test/host/host.js', {
it runs, but I would rather not hard code the directory.
I'm using: forever-monitor 1.2.3
How do I get this to work on linux?
Edit - adding examples of the above problem with changes to the names of the directories and script, maybe the /host/host.js
is causing some confusion. Using /childDir/script.js
instead.
The parent script is running as /home/ec2-user/test/parentScript.js
It calls the child script /home/ec2-user/test/childDir/script.js
using forever-monitor.
The first example at the top works perfectly in Windows but on Linux it is ignoring the cwd option and throws Error: Target script does not exist: script.js
If I add the directory to the script call (Same thing happens using sourceDir.)
var child = new (forever.Monitor)('./childDir/script.js', {
cwd is now added to the call making it skip the directory the script is in and not finding the script.
Error: Cannot find module '/home/ec2-user/test/childDir/childDir/script.js'
So the possibilities I see are.
- There is a bug when running on linux that makes cwd only fire if forever-monitor detects a directory change.
- There is a bug when running on both linux and windows where cwd is not intended to modify the path to the script being called, but on windows #1 is not happening and it always adds to the script path.
- I completely mis-understanding how this is supposed to work.
I assume one of these options should work on both windows and Linux. What is the correct way to do this?
var child = new (forever.Monitor)('script.js', {
max: 1,
silent: false,
options: [],
cwd:"./childDir"
});
or (assuming cwd is not supposed to modify the script source directory)
var child = new (forever.Monitor)('script.js', {
max: 1,
silent: false,
options: [],
sourceDir:"./childDir",
cwd:"./childDir"
});
Set the
sourceDir
option instead of thecwd
option and you should get the results you are trying to achieve. Thecwd
is used for the eventual call tochild_process.spawn
while thesourceDir
is used for looking up where the child script is located. Keep in mind that you will want to use a combination of__dirname
andpath.resolve()
to normalize the path.Edit:
You run your script like so:
Which sets the
cwd
for the node process runningstartup.js
as/home/user
. So if you run the command above withhost.js
in that directory with astartup.js
file looking like below:it has a
cwd
of/home/user
and sincehost.js
is in that directory, all is good.If you start it like
Then your
cwd
for thestartup.js
script is /home/user/some/other/path and therefore can't findhost.js
in its cwd. So in this instance we have to define thesourceDir
to the location ofhost.js
as/home/user