Error node ..version

1
C:\Users\Marcelo>node ..version
module.js:471
    throw err;
    ^

Error: Cannot find module 'C:\Users\Marcelo\..version'
    at Function.Module._resolveFilename (module.js:469:15)
    at Function.Module._load (module.js:417:25)
    at Module.runMain (module.js:604:10)
    at run (bootstrap_node.js:389:7)
    at startup (bootstrap_node.js:149:9)
    at bootstrap_node.js:504:3

I do not know how to solve it, I'm starting my java course and I have very little familiarity with the steps, thank you!

    
asked by anonymous 24.09.2017 / 15:38

1 answer

1

To find out which version of Node.js you should use -- and not .. . The short version is only -v .

Test node --version or node -v .

    
24.09.2017 / 15:42