Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-runtime

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-runtime

Detect which JavaScript runtime is being used.

  • 0.0.7
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

js-runtime

npm version npm downloads Coverage License

Detect which JavaScript runtime is being used, Bun, Deno or NodeJS.

Usage

index.js

import { get } from "js-runtime";

console.log(get()); //node or deno or bun
$ bun index.js
$ deno run index.js
$ node index.js

API

get

Return the current runtime.

Type: function
Returns: bun | deno | node

isBun

Type: function
Returns: boolean

isDeno

Type: function
Returns: boolean

isNode

Type: function
Returns: boolean

getVersion

Retrieve the version used in the current runtime.

Type: function
Returns: string

switcher

Switch based on the current runtime.

Type: function
Returns: T

index.js

import { switcher } from "js-runtime";

const message = switcher({
  bun: "Script is running with Bun",
  deno: "Script is running with Deno",
  node: "Script is running with Node",
})

console.log(message)
$ bun index.ts
script is running with Bun

importer

Dynamic import based on switch data, see switcher.

Type: function
Returns: T

index.js

import { importer } from "js-runtime";

const SQLite = await importer({
    bun: "bun:sqlite",
    deno: "https://deno.land/x/sqlite3@0.9.1/mod.ts",
    node: "better-sqlite3"
});

console.log(SQLite)
$ bun index.ts
bun:sqlite

Keywords

FAQs

Package last updated on 08 Nov 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc