This commit is contained in:
2026-03-21 17:08:04 +01:00
parent d75125d9fa
commit 070e6860d8
7 changed files with 33 additions and 203 deletions
+31 -8
View File
@@ -67,18 +67,41 @@ The goal is a framework that is:
## Installation
Install Bunext directly from GitHub:
### From the Moduletrace registry (recommended)
Configure the `@moduletrace` scope to point at the registry — pick one:
**`.npmrc`** (works with npm, bun, and most tools):
```ini
@moduletrace:registry=https://git.tben.me/api/packages/moduletrace/npm/
```
**`bunfig.toml`** (Bun-native):
```toml
[install.scopes]
"@moduletrace" = { registry = "https://git.tben.me/api/packages/moduletrace/npm/" }
```
Then install:
```bash
bun add @moduletrace/bunext
```
Or globally:
```bash
bun add -g @moduletrace/bunext
```
### From GitHub (alternative)
```bash
bun add github:moduletrace/bunext
```
Install globally:
```bash
bun add -g github:moduletrace/bunext
```
---
## Quick Start
@@ -157,7 +180,7 @@ bun run start
**Global install** — install once and use `bunext` from anywhere:
```bash
bun add -g github:moduletrace/bunext
bun add -g @moduletrace/bunext
bunext dev
bunext build
bunext start