Skip to content

moo-w/runtector

Repository files navigation

runtector

npm version npm downloads bundle JSDocs License

JavaScript runtime detector

Installation

npm install runtector

Usage

import {
  getCurRuntime,
  isBrowser,
  isBun,
  isDeno,
  isHappyDOM,
  isJSDOM,
  isNode,
  isWebWorker,
} from 'runtector'

API

  • isBrowser()

    true if the current environment is a browser. If the environment is jsdom or happy-dom it will return false.

  • isNode()

    true if the current environment is Node.js.

  • isWebWorker()

    true if the current environment is a Web Worker.

  • isDeno()

    true if the current environment is Deno.

  • isBun()

    true if the current environment is Bun.

  • isJSDOM()

    true if the current environment is JSDOM.

  • isHappyDOM()

    true if the current environment is HappyDOM.

  • getCurRuntime()

    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
     *  }
     */

License

MIT License © MOOZON WEI