Skip to content

Commit 0d6f8f2

Browse files
committed
Change package name to effect-devtui and simplify installation docs
1 parent dcaa03a commit 0d6f8f2

3 files changed

Lines changed: 16 additions & 17 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,13 @@ jobs:
4747
body: |
4848
## Effect DevTools Terminal UI
4949
50-
Download the binary for your platform below.
51-
52-
### Installation via npm
50+
### Installation
5351
```bash
54-
npm install -g @danielfgray/effect-devtui
52+
npm install -g effect-devtui
5553
effect-devtools
56-
```
57-
58-
### Direct Binary Download
59-
```bash
60-
# Linux x64
61-
wget https://github.com/${{ github.repository }}/releases/download/v${{ steps.package-version.outputs.version }}/effect-devtools-linux-x64
62-
chmod +x effect-devtools-linux-x64
63-
./effect-devtools-linux-x64
6454
65-
# macOS (Intel)
66-
wget https://github.com/${{ github.repository }}/releases/download/v${{ steps.package-version.outputs.version }}/effect-devtools-darwin-x64
67-
chmod +x effect-devtools-darwin-x64
68-
./effect-devtools-darwin-x64
55+
# Or run directly with bunx
56+
bunx effect-devtui
6957
```
7058
7159
Built from commit ${{ github.sha }}

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ Built with [OpenTUI](https://github.com/opentui/opentui) and inspired by the [Ef
66

77
<img width="1056" height="864" alt="20251210" src="https://github.com/user-attachments/assets/acc54df6-77fa-4b5c-b189-6ccba2e0bd14" />
88

9+
## Installation
10+
11+
```bash
12+
# Install globally
13+
npm install -g effect-devtui
14+
effect-devtools
15+
16+
# Or run directly with bunx
17+
bunx effect-devtui
18+
```
19+
920
## Features
1021

1122
- 🔍 **Real-time Span Viewer** - View and navigate span traces with expandable tree structure

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@danielfgray/effect-devtui",
2+
"name": "effect-devtui",
33
"version": "0.1.0",
44
"description": "Terminal UI for Effect DevTools",
55
"keywords": ["effect", "devtools", "tui", "terminal", "debugging"],

0 commit comments

Comments
 (0)