Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tsirysndr/exit-js

Provides an `exit()` function that works with Deno, Bun and Node.js
https://github.com/tsirysndr/exit-js

bun deno nodejs process

Last synced: about 1 month ago
JSON representation

Provides an `exit()` function that works with Deno, Bun and Node.js

Awesome Lists containing this project

README

        

# exit-js

[![](https://jsr.io/badges/@tsirysndr/exit-js)](https://jsr.io/@tsirysndr/exit-js)

This is a simple package that provides an `exit` function, it works with different runtimes like [Deno](https://deno.com/), [Bun](https://bun.sh/) and [Node.js](https://nodejs.org/).

## 🚀 Usage

```typescript
import { exit } from 'jsr:@tsirysndr/exit-js';

exit();

```