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
- Host: GitHub
- URL: https://github.com/serebano/debuno
- Owner: serebano
- Created: 2024-11-02T10:52:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-26T23:18:45.000Z (over 1 year ago)
- Last Synced: 2024-12-26T23:24:55.736Z (over 1 year ago)
- Topics: bun, deno, node
- Language: JavaScript
- Homepage:
- Size: 9.33 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```