Why isn't bin/www command not working in my cloud9 (c9) new run configuration?

530 Views Asked by At

I'm following along with a Lynda course on MEAN Stack development and while they are running bin/www command in a "New Run Configuration" and its yielding "debugger listening on port 15454"

whereas for me, when I enter bin/www, I get the following error:

debugger listening on port 15454

module.js:340
    throw err;
          ^
Error: Cannot find module '/home/ubuntu/workspace/bin/www'
    at Function.Module._resolveFilename (module.js:338:15)
    at Function.Module._load (module.js:280:25)
    at Module.runMain [as _onTimeout] (module.js:497:10)
    at Timer.listOnTimeout [as ontimeout] (timers.js:112:15)
1

There are 1 best solutions below

0
On

When you clone a empty repo from BitBucket it creates a workspace folder. Move the contents of that folder to the root of your cloud9 project.

OR

start from scratch and make sure to run "express . --hbs" in the correct folder

Run

**@**:~/workspace (master) $ express . --hbs

Not

 **@**:~/workspace/workspace (master) $ express . --hbs