add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/nodenv.md Normal file
View File

@@ -0,0 +1,28 @@
# nodenv
> 管理 Node.js 版本。
> 更多信息:<https://github.com/nodenv/nodenv>。
- 安装特定版本的 Node.js
`nodenv install {{version}}`
- 显示可用版本的列表:
`nodenv install --list`
- 在整个系统中使用特定版本的 Node.js
`nodenv global {{version}}`
- 在某个目录中使用特定版本的 Node.js
`nodenv local {{version}}`
- 显示当前目录的 Node.js 版本:
`nodenv version`
- 显示已安装的 Node.js 命令(例如 `npm`)的位置:
`nodenv which {{command}}`