新增wiki命令文件

This commit is contained in:
2026-04-14 16:02:50 +08:00
parent 65803c911d
commit c6e3d3c5db
485 changed files with 12578 additions and 396 deletions

32
wiki/entities/Node-js.md Normal file
View File

@@ -0,0 +1,32 @@
---
id: Node-js
title: "Node.js"
type: entity
tags: [javascript, runtime, environment]
aliases: [Node]
---
## Definition
Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行时环境,允许在服务器端执行 JavaScript 代码。
## Core Properties
- **类型**:运行时环境
- **官方网址**https://nodejs.org
- **版本**Vibe-Kanban 推荐使用 Node 20 LTS
## Installation Methods
- **直接安装**:从官网下载安装包
- **nvm**:通过 Node Version Manager 管理多版本
- **包管理器**`sudo apt install nodejs npm`(不推荐,可能版本过旧)
## Related Entities
- [[nvm]]Node.js 版本管理器
- [[PM2]]:基于 Node.js 的进程管理器
- [[Vibe-Kanban]]:依赖 Node.js 运行
- [[OpenCode]]:依赖 Node.js 运行
## Connections
- [[Node-js]] ← 安装工具 ← [[nvm]]
- [[Vibe-Kanban]] ← 依赖 ← [[Node-js]]
- [[OpenCode]] ← 依赖 ← [[Node-js]]
- [[PM2]] ← 依赖 ← [[Node-js]]