zapmyco 0.17.2-beta.2 → 0.19.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/README.md +46 -0
- package/esm/deno.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,52 @@
|
|
|
6
6
|
|
|
7
7
|
AI 原生的 TypeScript 启动模板,专为 AI 辅助开发时代打造。
|
|
8
8
|
|
|
9
|
+
## 安装方式
|
|
10
|
+
|
|
11
|
+
### 二进制下载(无需安装运行时)
|
|
12
|
+
|
|
13
|
+
每个版本都会发布预编译的二进制文件,一行命令即可安装:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# macOS / Linux
|
|
17
|
+
curl -fsSL https://raw.githubusercontent.com/shenjingnan/zapmyco/main/install.sh | sh
|
|
18
|
+
|
|
19
|
+
# Windows (PowerShell)
|
|
20
|
+
iwr https://raw.githubusercontent.com/shenjingnan/zapmyco/main/install.ps1 -useb | iex
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
安装脚本支持通过环境变量指定版本和安装目录:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# 安装指定版本
|
|
27
|
+
ZAPMYCO_VERSION=v0.18.0 curl -fsSL https://raw.githubusercontent.com/shenjingnan/zapmyco/main/install.sh | sh
|
|
28
|
+
|
|
29
|
+
# 安装到自定义目录
|
|
30
|
+
ZAPMYCO_INSTALL=~/tools curl -fsSL https://raw.githubusercontent.com/shenjingnan/zapmyco/main/install.sh | sh
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
如果你更倾向于直接下载二进制文件,也可以从下表选择对应平台:
|
|
34
|
+
|
|
35
|
+
| 平台 | 架构 | 下载链接 |
|
|
36
|
+
| ------- | ------------- | ------------------------------------------------------------------------------------------------------------------ |
|
|
37
|
+
| Linux | x86_64 | [zapmyco-linux-x64](https://github.com/shenjingnan/zapmyco/releases/latest/download/zapmyco-linux-x64) |
|
|
38
|
+
| Linux | ARM64 | [zapmyco-linux-arm64](https://github.com/shenjingnan/zapmyco/releases/latest/download/zapmyco-linux-arm64) |
|
|
39
|
+
| macOS | Apple Silicon | [zapmyco-macos-arm64](https://github.com/shenjingnan/zapmyco/releases/latest/download/zapmyco-macos-arm64) |
|
|
40
|
+
| macOS | Intel | [zapmyco-macos-x64](https://github.com/shenjingnan/zapmyco/releases/latest/download/zapmyco-macos-x64) |
|
|
41
|
+
| Windows | x86_64 | [zapmyco-windows-x64.exe](https://github.com/shenjingnan/zapmyco/releases/latest/download/zapmyco-windows-x64.exe) |
|
|
42
|
+
|
|
43
|
+
### 通过 npm 安装
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npx zapmyco --help
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### 通过 JSR / Deno 运行
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
deno run --allow-env --allow-net jsr:@zapmyco/zapmyco --help
|
|
53
|
+
```
|
|
54
|
+
|
|
9
55
|
## 特性
|
|
10
56
|
|
|
11
57
|
- **现代技术栈**: TypeScript + Node.js 24+ + pnpm
|
package/esm/deno.js
CHANGED