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

https://github.com/serebano/debuno

Bring Deno module resolution to Bun & Node
https://github.com/serebano/debuno

bun deno node

Last synced: 8 months ago
JSON representation

Bring Deno module resolution to Bun & Node

Awesome Lists containing this project

README

          

# debuno

Bring Deno module resolution to Bun & Node

## Install

```sh
curl -fsSL https://debuno.dev/install | sh
```

## Quick start

```sh
debuno init foo
cd foo
```

## Deno

```sh
deno index.ts
# or
debuno deno index.ts
```

## Bun

```sh
bun --preload debuno index.ts
# or
debuno bun index.ts
```

## Node

```sh
node --import debuno index.ts
# or
debuno node index.ts
```