node.jscmddirectory

Change directory in Node.js command prompt


I want to move to another directory in Node.js command prompt but when I open the Node.js cmd window it doesn't show me any path. Here is the screenshot of the Node.js cmd window:

enter image description here

Now if i want to change directory to D:\abc then how can i do it here?


Solution

  • That isn't the Node.js command prompt window. That is a language shell to run JavaScript commands, also known as a REPL.

    In Windows, there should be a Node.js command prompt in your Start menu or start screen:

    Windows Search for node.js

    Which will open a command prompt window that looks like this:

    Node.js command prompt window

    From there you can switch directories using the cd command.