@mjasano/devtunnel 1.0.0 → 1.2.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 +44 -0
- package/CLAUDE.md +18 -0
- package/package.json +2 -2
- package/public/index.html +830 -32
- package/server.js +453 -6
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.2.0] - 2025-01-02
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Terminal tabs UI for managing multiple sessions
|
|
12
|
+
- tmux session integration (attach to existing tmux sessions)
|
|
13
|
+
- System monitor in sidebar (CPU, Memory, Uptime, Load average)
|
|
14
|
+
- Auto port detection (finds next available port if default is in use)
|
|
15
|
+
- Session detach functionality
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Sessions section moved from sidebar to terminal tabs
|
|
19
|
+
- Improved session switching with proper detach handling
|
|
20
|
+
|
|
21
|
+
## [1.1.0] - 2025-01-02
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Tab-based UI for switching between Terminal and Editor
|
|
25
|
+
- Code editor powered by Monaco Editor (VS Code engine)
|
|
26
|
+
- File explorer in sidebar with breadcrumb navigation
|
|
27
|
+
- File system API endpoints (`/api/files`, `/api/files/read`, `/api/files/write`)
|
|
28
|
+
- Multiple file tabs with unsaved changes indicator
|
|
29
|
+
- Auto-detect syntax highlighting for 20+ languages
|
|
30
|
+
- Keyboard shortcut `Ctrl+S` to save files
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- File click handling with special characters in paths
|
|
34
|
+
|
|
35
|
+
## [1.0.0] - 2025-01-01
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
- Web-based terminal with xterm.js
|
|
39
|
+
- Persistent sessions (24h timeout)
|
|
40
|
+
- Multiple session management
|
|
41
|
+
- Cloudflare tunnel integration for public URL exposure
|
|
42
|
+
- Session reconnection with output buffer
|
|
43
|
+
- CLI tool (`devtunnel`) with auto-setup
|
|
44
|
+
- Docker support
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Project Rules
|
|
2
|
+
|
|
3
|
+
## Release Process
|
|
4
|
+
|
|
5
|
+
새 버전 출시 시 아래 순서를 따를 것:
|
|
6
|
+
|
|
7
|
+
1. `CHANGELOG.md` 업데이트 (변경사항 기록)
|
|
8
|
+
2. `package.json` 버전 올리기
|
|
9
|
+
3. `npm publish --access public`
|
|
10
|
+
4. `git add . && git commit && git push`
|
|
11
|
+
5. `gh release create vX.X.X` (GitHub Release 생성)
|
|
12
|
+
|
|
13
|
+
## Version Convention
|
|
14
|
+
|
|
15
|
+
- Semantic Versioning 사용 (MAJOR.MINOR.PATCH)
|
|
16
|
+
- MAJOR: 호환성 깨지는 변경
|
|
17
|
+
- MINOR: 새 기능 추가
|
|
18
|
+
- PATCH: 버그 수정
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mjasano/devtunnel",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Web terminal with tunnel manager - access your dev environment from anywhere",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "Web terminal with code editor and tunnel manager - access your dev environment from anywhere",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"devtunnel": "./bin/cli.js"
|