Error in Node.js Module.js 472 throw err;

0

I am creating an API on node, for request with my application. But this error appears, claiming that this folder does not exist, but in the code I'm not calling it anywhere.

module.js:472
    throw err;
    ^

Error: Cannot find module 'C:\Users\Ramon Lopes\Documents\API\NodeApi.js'
    at Function.Module._resolveFilename (module.js:470:15)
    at Function.Module._load (module.js:418:25)
    at Module.runMain (module.js:605:10)
    at run (bootstrap_node.js:427:7)
    at startup (bootstrap_node.js:148:9)
    at bootstrap_node.js:542:3
    
asked by anonymous 29.03.2017 / 22:03

1 answer

0

Run

  

npm start

then:

  

ng serves

    
04.05.2017 / 20:23