zzyxyz_server/README.md

30 lines
524 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Main
## 杂项
```shell
npm init
npm install [package names]
npm install
```
使用tmux
安装tmux如果尚未安装
bash
sudo apt-get install tmux # 对于Debian/Ubuntu系统
sudo yum install tmux # 对于CentOS/RedHat系统
启动一个新的tmux会话
bash
tmux
在tmux会话中启动你的Node.js应用
bash
node app.js
按下Ctrl + B然后按下D来“detach”分离tmux会话。
重新连接到tmux会话时运行
bash
tmux attach
https://zhuanlan.zhihu.com/p/667646001