nvm
1 | nvm node_mirror https://npmmirror.com/mirrors/node/ |
npm
1 | npm config get registry |
yarn
1 | yarn config get registry |
pnpm
1 | pnpm config get registry |
git
1 | git config credential.helper store |
时间段重叠
1 | a_start <= b_end and a_end >= b_start |
关闭端口
1 | for /f "tokens=5" %a in ('netstat -ano ^| findstr :8080 ^| findstr LISTENING') do taskkill /pid %a /f |