mac
1、在mac下全局安装now,
npm install -g now
but then run now get command not find,
run /usr/local/Cellar/node/8.0.0/bin/now ,then ok.
设置系统的环境变量:
显示环境变量:echo $PATH
显示node安装目录:which node
显示用的是哪个shell: echo $SHELL
如果用的是zsh,则通过修改它的配置文件来修改系统变量:
在根目录下cd ~,vim .zshrc修改里面的export PATH=“YOUR NEW PATH”
重启终端即可。
2、在mac的终端中如何退出编辑模式返回到命令行模式:control+C;
3、hosts file path: /private/etc/
4、资源管理器: command + alt + esc
5、打包时去除mac自带的.DS_Store文件:tar --exclude '.DS_Store' -cvzf YGZPDP.tar.gz YGZPDP
6、快速调出terminal窗口:
- 激活内置 Spotlight 搜索(就是屏幕右上角的放大镜,可以鼠标点,也可以用默认快捷键 command + 空格)
- 输入「ter」
- 回车
PS. 多用几次后可以只输入「t」就回车。
7、安装homebrew用于在mac下安装软件:
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
mac默认已经安装了zsh,可以继续安装oh-my-zsh用于配置zsh:
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
可参看这篇文字。注意安装完oh-my-zsh后,.oh-my-zsh目录和.zshrc配置文件都是隐藏在/Users/[yourname]/目录下的, 需要ls -a命令才能看到。
8、卸载程序后再去安装目录看看有没有残留:~/Library/Application Support
9、安装npm install ...或yarn add ...出现报错
error Received malformed response from registry for undefined. The registry may be down.
解决方法
npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist