The NodeJS live-server package runs a temporary server displaying any HTML/CSS/JS resources in the current folder. It automatically reloads the page in your browser when any of these files change.
- Verify that Node.js is installed. If you see anything when you run
which npm
in a terminal, it is. If not, follow the instructions at nodejs.org to install. - Install live-server:
npm install -g live-server
- Move your terminal to where your pages live:
cd <path-to-content>
- Start the server:
live-server .
- Open localhost:8080 in a browser.
C:\Users\HP\Desktop\Natours project>live-server index.html
Serving "index.html" at http://127.0.0.1:8080
events.js:292
throw er; // Unhandled 'error' event
^
Error: spawn cmd ENOENT

at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)
at onErrorNT (internal/child_process.js:465:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21)
Emitted 'error' event on ChildProcess instance at:
at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
at onErrorNT (internal/child_process.js:465:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21) {
errno: -4058,
code: 'ENOENT',
syscall: 'spawn cmd',
path: 'cmd',
spawnargs: [ '/c', 'start', '""', '/b', 'http://127.0.0.1:8080' ]
}
I am totally fed up of this problem. I am also not able to use live-server extension also so please reply me if you have any solution...