JavaScript runtime detector
npm install runtector
import {
getCurRuntime,
isBrowser,
isBun,
isDeno,
isHappyDOM,
isJSDOM,
isNode,
isWebWorker,
} from 'runtector'
-
true
if the current environment is a browser. If the environment isjsdom
orhappy-dom
it will returnfalse
. -
true
if the current environment is Node.js. -
true
if the current environment is a Web Worker. -
true
if the current environment is Deno. -
true
if the current environment is Bun. -
true
if the current environment is JSDOM. -
true
if the current environment is HappyDOM. -
Example:
// Node.js environment import { getCurRuntime } from 'runtector' console.log(getCurRuntime()) /** * ===> * { * isBrowser: false, * isNode: true, * isWebWorker: false, * isDeno: false, * isBun: false, * isJSDOM: false, * isHappyDOM: false * } */
MIT License © MOOZON WEI