About 327,000 results
Open links in new tab
  1. How to find what node version a project supports - Stack Overflow

    Mar 15, 2017 · These CI config files often contain a list of Node.js versions to test on. Generally, the lowest version number in the CI config is the minimum version supported by the package. …

  2. How to decide when to use Node.js? - Stack Overflow

    Feb 21, 2011 · When you use something like Node.js, the server has no need of maintaining separate threads for each open connection. This means you can create a browser-based chat …

  3. What exactly is node.js used for? - Stack Overflow

    Dec 26, 2010 · Node.js is exactly used for back-end development, but it is popular as a full-stack and front-end solution as well. It is used primarily to build web applications, but it is a very …

  4. How does require () in node.js work? - Stack Overflow

    Feb 28, 2012 · Note that while module.js itself is using require(), that's a different require function, and it is defined in the file called "node.js" Side effect of above: it's perfectly fine to have …

  5. javascript - Use of Node JS for Frontend - Stack Overflow

    Node.js is a javascript runtime that uses the Chrome V8 javascript engine. The front-end already uses a javascript engine on the browser (V8 for Chrome, SpiderMonkey for Firefox, Chakra for …

  6. Node.js Port 3000 already in use but it actually isn't?

    Sep 5, 2016 · I have been working with a node.js project for a few weeks and it has been working great. Usually, I use npm start to run my app and view it in a browser on localhost, port 3000. …

  7. Can we say node.js is a web server? - Stack Overflow

    Feb 27, 2012 · Tornado is a web server + a small web framework. :) I think ezpresso is right. Node.js is actually a runtime environment much like Java's JRE. Node.js is being used more …

  8. How to change to an older version of Node.js - Stack Overflow

    I am running Node.js version v0.5.9-pre on Ubuntu 10.10. I would like to be using version v0.5.0-pre. How do I roll back to the older version of node?

  9. How to find unused packages in package.json? - Stack Overflow

    Is there a way to determine if you have packages in your package.json file that are no longer needed? For instance, when trying out a package and later commenting or deleting code, but …

  10. In nodejs, how do I check if a port is listening or in use

    Apr 25, 2015 · It looks like this creates or tries to create a new something listening on the port, however brief. I wite though: "Better would be for it to detect that the port is in use (without a …