Answers for "mac Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json"

1

Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json

"runtimeExecutable": "/usr/local/bin/node"
Posted by: Guest on October-12-2020
1

Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json

// inside launch.json
{
  	...
  	"configurations": [
    	{
          	...
			// add this line:
			"runtimeExecutable": "/usr/local/bin/node"
	        ...
        }
    ]
}
Posted by: Guest on July-23-2021

Code answers related to "mac Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language