mac-
mac node.js 开发装机
Mac使用终端安装Homebrew(brew)
https://blog.csdn.net/boyqicheng/article/details/71481213?utm_source=itdadao&utm_medium=referral
安装Mysql
https://blog.csdn.net/catstarxcode/article/details/78940385 建议是下载安装包安装的方式
Navicat Premium Mac 12
常见问题
使用Navicat Premium 第一次链接时
2059 - Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(../Frameworks/caching_sha2_password.so, 2): image not found
https://blog.csdn.net/qq_20009015/article/details/81463315
安装Git
在命令行输入 git -v 就会自动提示引导安装
n 管理node.js 的版本
安装curl -L https://git.io/n-install | bash
. ~/.bashrc
使用n来安装最新的node.js
n latest
node -v
//检查安装后的node 的版本
npm -v
//检查安装后的npm 的版本
redies 管理缓存
安装https://www.jianshu.com/p/2123bfbb1139
GraphicsMagick 用来做图片处理
安装brew install graphicsmagick
gm -version
ImageMagick 用来做图片处理
安装brew install ImageMagick
VS Code IDE
安装自行到官网下载安装
配置 vsc 命令在控制台快速打开项目 1、打开用户配置文件:
vim ~/.bash_profile
2、添加别名
#配置Visual Studio Code的命令行方式
alias vsc="'/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code'"
如果不添加别名,也可以将路径添加到环境变量下
VSC_BIN=/Applications/Visual Studio Code.app/Contents/Resources/app/bin
PATH=$VSC_BIN:$PATH
export PATH
3、保存后回到命令行终端执行命令使其生效:
source ~/.bash_profile
VScode 插件工具集
https://blog.csdn.net/qq_41164267/article/details/82767554
Eslint 和 VScode的相关配置
https://segmentfault.com/a/1190000009077086?from=timeline&isappinstalled=0