devsurface 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +72 -6
- package/dist/cli/index.js +532 -122
- package/dist/cli/index.js.map +1 -1
- package/package.json +21 -2
- package/src/web/dist/assets/{index-BO8glxtu.js → index-DOLQwdCe.js} +1 -1
- package/src/web/dist/index.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
- Added framework presets for Next.js, Vite, Express, Fastify, NestJS, Remix, and Prisma.
|
|
6
|
+
- Added detected preset commands and ports to the dashboard and command API.
|
|
7
|
+
- Added Python project detection for `requirements.txt`, `pyproject.toml`, and `Pipfile`, including FastAPI/Uvicorn, Flask, and Django commands.
|
|
8
|
+
- Added Go project detection from `go.mod`, with run, build, and test commands.
|
|
9
|
+
- Added Java project detection from Maven and Gradle build files, with build and test commands.
|
|
10
|
+
- Updated doctor checks so detected Python, Go, and Java projects are not treated as broken Node.js projects.
|
|
11
|
+
|
|
3
12
|
## 0.4.0
|
|
4
13
|
|
|
5
14
|
- Added multi-workspace Hub mode: one DevSurface instance serves multiple project
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<h1>DevSurface</h1>
|
|
8
8
|
|
|
9
|
-
<p><strong>
|
|
9
|
+
<p><strong>Local developer dashboard for Node.js repositories.</strong></p>
|
|
10
10
|
|
|
11
11
|
<p>
|
|
12
12
|
<a href="#quick-start">Quick Start</a>
|
|
@@ -22,19 +22,30 @@
|
|
|
22
22
|
<a href="https://github.com/mrfandu1/devsurface">
|
|
23
23
|
<img alt="DevSurface ready" src="docs/devsurface-badge.svg">
|
|
24
24
|
</a>
|
|
25
|
+
<a href="https://www.npmjs.com/package/devsurface">
|
|
26
|
+
<img alt="npm version" src="https://img.shields.io/npm/v/devsurface.svg">
|
|
27
|
+
</a>
|
|
28
|
+
<a href="https://www.npmjs.com/package/devsurface">
|
|
29
|
+
<img alt="npm downloads" src="https://img.shields.io/npm/dm/devsurface.svg">
|
|
30
|
+
</a>
|
|
31
|
+
<a href="https://github.com/mrfandu1/devsurface/stargazers">
|
|
32
|
+
<img alt="GitHub stars" src="https://img.shields.io/github/stars/mrfandu1/devsurface?style=flat">
|
|
33
|
+
</a>
|
|
25
34
|
<a href="LICENSE">
|
|
26
|
-
<img alt="License: MIT" src="https://img.shields.io/
|
|
35
|
+
<img alt="License: MIT" src="https://img.shields.io/github/license/mrfandu1/devsurface">
|
|
27
36
|
</a>
|
|
28
37
|
<img alt="Built with TypeScript" src="https://img.shields.io/badge/Built%20with-TypeScript-3178c6">
|
|
29
38
|
</p>
|
|
30
39
|
|
|
31
40
|
</div>
|
|
32
41
|
|
|
33
|
-
DevSurface
|
|
34
|
-
|
|
35
|
-
|
|
42
|
+
DevSurface is a zero-config CLI and local browser dashboard for understanding,
|
|
43
|
+
configuring, and running unfamiliar repositories. It detects Node.js package scripts,
|
|
44
|
+
Python, Go, and Java project commands, environment files, occupied ports, Docker
|
|
45
|
+
Compose services, frameworks, live command logs, repo health checks, and
|
|
46
|
+
multi-workspace projects.
|
|
36
47
|
|
|
37
|
-
No config file is required.
|
|
48
|
+
No global install, account, cloud service, or config file is required.
|
|
38
49
|
|
|
39
50
|
```bash
|
|
40
51
|
npx devsurface
|
|
@@ -64,6 +75,36 @@ DevSurface is local-first:
|
|
|
64
75
|
- `.env` values are never displayed.
|
|
65
76
|
- Commands are shown before they run.
|
|
66
77
|
|
|
78
|
+
## Use Cases
|
|
79
|
+
|
|
80
|
+
DevSurface is useful when you need to:
|
|
81
|
+
|
|
82
|
+
- Onboard contributors to an unfamiliar Node.js repository.
|
|
83
|
+
- Explore available npm, pnpm, Yarn, or Bun scripts.
|
|
84
|
+
- Check missing environment variables before starting a project.
|
|
85
|
+
- Detect local port conflicts.
|
|
86
|
+
- View and control Docker Compose services.
|
|
87
|
+
- Run development commands from a browser dashboard.
|
|
88
|
+
- Check repository onboarding health in GitHub Actions.
|
|
89
|
+
- Manage multiple local project workspaces.
|
|
90
|
+
|
|
91
|
+
## Supported Frameworks and Tools
|
|
92
|
+
|
|
93
|
+
DevSurface detects projects using:
|
|
94
|
+
|
|
95
|
+
- Next.js
|
|
96
|
+
- Vite
|
|
97
|
+
- Express
|
|
98
|
+
- Fastify
|
|
99
|
+
- NestJS
|
|
100
|
+
- Remix
|
|
101
|
+
- Prisma
|
|
102
|
+
- Python: FastAPI/Uvicorn, Flask, Django
|
|
103
|
+
- Go modules
|
|
104
|
+
- Java: Maven and Gradle
|
|
105
|
+
- Docker Compose
|
|
106
|
+
- npm, pnpm, Yarn, and Bun
|
|
107
|
+
|
|
67
108
|
## How It Compares
|
|
68
109
|
|
|
69
110
|
| Tool | What it does | Where DevSurface is different |
|
|
@@ -295,6 +336,31 @@ DevSurface is designed for local development.
|
|
|
295
336
|
database drops, and `git clean -fd`, are visibly marked before execution.
|
|
296
337
|
- Child processes started by DevSurface are cleaned up when the dashboard exits.
|
|
297
338
|
|
|
339
|
+
## FAQ
|
|
340
|
+
|
|
341
|
+
### What is DevSurface?
|
|
342
|
+
|
|
343
|
+
DevSurface is a local developer dashboard for understanding, configuring, and running
|
|
344
|
+
Node.js repositories.
|
|
345
|
+
|
|
346
|
+
### Can DevSurface run npm scripts from a browser?
|
|
347
|
+
|
|
348
|
+
Yes. DevSurface detects `package.json` scripts and lets you run them while viewing
|
|
349
|
+
live logs and exit status.
|
|
350
|
+
|
|
351
|
+
### Does DevSurface display .env values?
|
|
352
|
+
|
|
353
|
+
No. DevSurface checks whether environment keys exist, but never displays their values.
|
|
354
|
+
|
|
355
|
+
### Does DevSurface require configuration?
|
|
356
|
+
|
|
357
|
+
No. It works automatically, with an optional `devsurface.config.json` file for richer
|
|
358
|
+
commands, groups, ports, env paths, and docs links.
|
|
359
|
+
|
|
360
|
+
### Does DevSurface support Docker Compose?
|
|
361
|
+
|
|
362
|
+
Yes. It detects Compose services and provides service status, controls, and recent logs.
|
|
363
|
+
|
|
298
364
|
## Examples
|
|
299
365
|
|
|
300
366
|
This repository includes two sample projects:
|