https://github.com/hellojukay/nodejs-command-line
如何使用 nodejs 编写命令行程序
https://github.com/hellojukay/nodejs-command-line
Last synced: about 1 year ago
JSON representation
如何使用 nodejs 编写命令行程序
- Host: GitHub
- URL: https://github.com/hellojukay/nodejs-command-line
- Owner: hellojukay
- Created: 2021-05-31T06:31:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-01T07:06:00.000Z (about 5 years ago)
- Last Synced: 2025-01-29T08:33:53.270Z (over 1 year ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodejs-command-line
如何使用 Node.js 编写命令行程序
Table of Contents
=================
- 基础概念
- [ShaBang](docs/chapter1.md)
- [输入和输出](docs/chapter1.md#输入和输出)
- [标准输入与输出](docs/chapter1.md#输入和输出)
- [错误输出](docs/chapter1.md#错误输出)
- [管道](docs/chapter1.md#管道)
- [环境变量](docs/chapter1.md#环境变量)
- [几个特殊的环境变量](docs/chapter1.md#几个特殊的环境变量)
- [PATH环境变量](docs/chapter1.md#PATH环境变量)
- [用户相关](docs/chapter1.md#用户相关)
- [命令行参数](docs/chapter1.md)
- [shell的自动扩展参数](docs/chapter1.md#shell的自动扩展参数)
- [返回值](docs/chapter1.md#返回值)
- [信号处理](docs/chapter1.md#信号处理)
- Node.js和命令行
- [环境变量与命令行参数](docs/chapter2.md)
- [终端操作](docs/chapter2.md)
- [非打印字符](docs/chapter2.md)
- [多线程](docs/chapter2.md)
- [多进程](docs/chapter2.md)
- [fork和exec](docs/chapter2.md)