npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cross-runtime

v0.1.0

Published

Collection of cross runtime constants and utilities

Downloads

5

Readme

Cross Runtime

Collection of cross runtime APIs and utilities - Write once run anywhere ¯\_(ツ)_/¯

  • Web Platform APIs
  • File System APIs
  • Runtime detection APIs
  • etc

Note: This is very much a work in progress and could break at any time.

Installation

Node.js

npm i cross-runtime
// node hello.js
import * as cr from 'cross-runtime'

console.log(`Hello ${cr.getRuntime()}!`)
// Hello node!

Deno

// import-map.json
{
  "imports": {
    "cross-runtime": "https://cdn.skypack.dev/cross-runtime"
  }
}
// deno run --import-map import-map.json hello.js
import * as cr from 'cross-runtime'

console.log(`Hello ${cr.getRuntime()}!`)
// Hello deno!

Bun

bun i cross-runtime
// bun hello.js
import * as cr from 'cross-runtime'

console.log(`Hello ${cr.getRuntime()}!`)
// Hello bun!

Browser

<script
  async
  src="https://ga.jspm.io/npm:[email protected]/dist/es-module-shims.js"
></script>
<script type="importmap">
  {
    "imports": {
      "cross-runtime": "https://cdn.skypack.dev/cross-runtime"
    }
  }
</script>
<script type="module">
  import * as cr from 'cross-runtime'

  console.log(`Hello ${cr.getRuntime()}!`)
  // Hello browser!
</script>

Runtime Support Table

| API | Deno | Node.js | Browser | Cloudflare Workers | Bun | | ------------------------- | ---- | ------- | ------- | ------------------ | ------- | | isDeno | ✅ | ✅ | ✅ | TODO | ✅ | | isNode | ✅ | ✅ | ✅ | TODO | ✅ | | isBrowser | ✅ | ✅ | ✅ | TODO | ✅ | | isBun | ✅ | ✅ | ✅ | TODO | ✅ | | getRuntime | ✅ | ✅ | ✅ | TODO | ✅ | | writeFile | ✅ | ✅ | N/A | N/A | PARTIAL | | readFile | ✅ | ✅ | N/A | N/A | ✅ | | Worker | ✅ | ✅ | ✅ | ? | TODO |

APIs

The following APIs are available in all supported runtimes:

isDeno

Detects if the current runtime is Deno. (See the runtime support table)

type isDeno = () => boolean
import * as cr from 'cross-runtime'

cr.isDeno() && console.log('Hello deno!')

isNode

Detects if the current runtime is Node.js. (See the runtime support table)

type isNode = () => boolean
import * as cr from 'cross-runtime'

cr.isNode() && console.log('Hello node!')

getRuntime

Returns the current runtime. (See the runtime support table)

type getRuntime = () => 'browser' | 'bun' | 'deno' | 'node' | null
import * as cr from 'cross-runtime'

console.log(`Hello ${cr.getRuntime()}!`)

// $ node get-runtime.js
// Hello node!

// $ deno run get-runtime.js
// Hello deno!

writeFile

Cross runtime writeFile API inspired by the Node.js and Deno built-ins. (See the runtime support table)

type writeFile = (
  path: string | URL,
  data: string,
  options?: { encoding?: 'utf-8'; append?: boolean; create?: boolean },
) => Promise<void>
import * as cr from 'cross-runtime'

await cr.writeFile(new URL('./hello.txt', import.meta.url), 'hello!')
  • The Bun API is missing support for append and create (See issue #564)

readFile

Cross runtime readFile API inspired by the Node.js and Deno built-ins. (See the runtime support table)

type readFile = (
  path: string | URL,
  options?: { encoding?: 'utf-8' },
) => Promise<string>
import * as cr from 'cross-runtime'

console.log(await cr.readFile(new URL('./hello.txt', import.meta.url)))

Worker

Cross runtime Web Worker API. (See the runtime support table)

type Worker = typeof globalThis.Worker
import * as cr from 'cross-runtime'

const worker = new cr.Worker(new URL('./worker.js', import.meta.url), {
  type: 'module',
})
  • The Node.js API is an alias to the web-worker library
  • The Deno API is an alias to the Web Worker API on the globalThis context

Project Goals

The sole purpose of this library is to bridge the gap between different JavaScript runtime APIs. All APIs are ESM only in an effort to create a write once run anywhere experience. The library will only include APIs that differ between runtimes with the intention of removing APIs as they become available across all supported runtimes.