
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
detect-node
Advanced tools
npm install --save detect-node
var isNode = require('detect-node');
if (isNode) {
console.log("Running under Node.JS");
} else {
alert("Hello from browser (or whatever not-a-node env)");
}
The check is performed as:
module.exports = false;
// Only Node.JS has a process variable that is of [[Class]] process
try {
module.exports = Object.prototype.toString.call(global.process) === '[object process]'
} catch(e) {}
Thanks to Ingvar Stepanyan for the initial idea. This check is both the most reliable I could find and it does not use process env directly, which would cause browserify to include it into the build.
is-node is a package similar to detect-node that provides a simple check to see if the code is running in Node.js. It compares to detect-node by offering the same basic functionality but may have different implementation details or additional features.
is-node-process is another package that serves the same purpose as detect-node. It checks if the current process is a Node.js process. The difference may lie in the specific method of detection and any additional checks or features it provides.
FAQs
Detect Node.JS (as opposite to browser environment) (reliable)
The npm package detect-node receives a total of 15,201,652 weekly downloads. As such, detect-node popularity was classified as popular.
We found that detect-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.