About 1,340,000 results
Open links in new tab
  1. How to run a hello.js file in Node.js on windows?

    381 I am trying to run a hello world program written in javascript in a separate file named hello.js Currently running windows version of node.js. The code runs perfectly in console window but …

  2. node.js - Run JavaScript in Visual Studio Code - Stack Overflow

    Aug 3, 2015 · Is there a way to execute JavaScript and display the results using Visual Studio Code? For example, a script file containing: console.log('hello world'); I assume that Node.js …

  3. How to run server written in js with Node.js - Stack Overflow

    Jan 4, 2013 · How to run server written in js with Node.js Asked 12 years, 11 months ago Modified 5 years, 10 months ago Viewed 129k times

  4. node.js - Node - how to run app.js? - Stack Overflow

    I am very new to Node.js and I tried to run a project (made by other developer) by having a command in terminal node app.js. But I encountered below error, do you have any idea how to …

  5. How do I run a node.js app as a background service?

    Oct 26, 2010 · Original post: I want my node.js server to run in the background, i.e.: when I close my terminal I want my server to keep running. I've googled this and came up with this tutorial, …

  6. node.js - How to run TypeScript files from command line ... - Stack ...

    Nov 5, 2015 · With plain Node.JS, you can run any js file with node path/to/file.js, with CoffeeScript it's coffee hello.coffee and ES6 has babel-node hello.js. How do I do the same …

  7. How to execute a hello world javascript file in node.js

    Alternative. Open Nodejs "The thing with a green icon". Copy the code that you would like to be executed from the file that you have paste it in nodejs then press enter nodejs understands js …

  8. Running Node.Js on Android - Stack Overflow

    Is there a way to run a node.js application (a server in my case) on an Android device? if you're wondering why I'd want this: I made a WebApp with a Node.Js server and I now want a …

  9. How can I run multiple npm scripts in parallel? - Stack Overflow

    "dev": "npm run start-watch && npm run wp-server" ... but that will wait for start-watch to finish before running wp-server. How can I run these in parallel? Please keep in mind that I need to …

  10. How to execute the start script with Nodemon - Stack Overflow

    Just executing command nodemon index.js will run your project. But if you install Nodemon locally by command npm install nodemon then you have to specify the script. If you name it as start …