@terminal-nerds/snippets-runtime
Modules included
Prerequisites & usage
Optional
If you are using TypeScript,
the latest version, which supports new features (such as satisfies
), is supported.
Runtime environments
This package can be used in several runtime environments. We aim for cross-runtime compatibility and ensure proper error messages if a particular snippet cannot be run in the currently running environment.
Browsers
We use browserslist to define the minimum browsers versions supported.
Take a look at our shared browserslist configuration for more details.
Usage:
<script type="module">
import { snippet } from "https://cdn.jsdelivr.net/npm/@terminal-nerds/snippets-test";
</script>
Bun
We aim to support the latest version of bun.
Usage:
Firstly, install it:
bun add @terminal-nerds/snippets-test
And then in a particular file:
import { snippet } from "@terminal-nerds/snippets-test";
Deno
We aim to support the latest version of Deno.
Usage:
import { snippet } from "npm:@terminal-nerds/snippets-test";
Node.js
The latest Node.js LTS (Long-Term Support) version is the minimum one supported.
Warning
This package is written in ES Module (ESM) type.
So, if you wish to use it in a project with CommonJS (CJS) type, you need to bundle this package or a particular module(s).
Usage:
Install it first with the Node.js package manager of your choice. In our example, we use pnpm.
pnpm add @terminal-nerds/snippets-test
And then in a particular file:
import { snippet } from "@terminal-nerds/snippets-test";
Security
License
Contributing
Please refer to the monorepo (terminal-nerds/snippets) project's CONTRIBUTING file for more information if you wish to get involved.