Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/serebano/debuno

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

bun deno node

Last synced: about 1 month ago
JSON representation

Deno module resolution for Bun & Node

Awesome Lists containing this project

README

        

# debuno

```ts
// app.ts

import "https://docs.deno.com/examples/hello-world.ts";

// import hono from "https://esm.sh/hono";
// import hono from "jsr:@hono/hono";
// import hono from "npm:hono";
```

## Deno

```sh
deno --watch app.ts
```

## Bun

```sh
bun --preload debuno --watch app.ts
```

## Node

```sh
node --import debuno --watch app.ts
```