Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/serebano/debuno
- Owner: serebano
- Created: 2024-11-02T10:52:06.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-03T18:39:50.000Z (about 1 month ago)
- Last Synced: 2024-12-03T19:33:54.608Z (about 1 month ago)
- Topics: bun, deno, node
- Language: JavaScript
- Homepage:
- Size: 124 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# debuno
```ts
// app.tsimport "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
```