Files
30-seconds-of-code/snippets/is-node.md
2023-04-28 22:29:23 +03:00

555 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Environment is Node.js snippet
node
cloudy-rock-formation 2021-04-02T11:45:13+03:00

Determines if the current runtime environment is Node.js.

  • Use the process global object that provides information about the current Node.js process.
  • Check if process, process.versions and process.versions.node are defined.
const isNode = () =>
  typeof process !== 'undefined' &&
  !!process.versions &&
  !!process.versions.node;
isNode(); // true (Node)
isNode(); // false (browser)