Alias: run
, r
Compare NPM: npm run
co r dev
When a command does not exist, co will attempt to run it using the run command. Therefore, we can directly:
当一个命令不存在时,co 将尝试使用 run 命令来运行它。因此,我们可以直接:
co dev
Alias: execute
, x
Compare NPM: npx
co x prisma
Alias: install
, i
, add
, a
Compare NPM: npm install
co i
Alias: install
, i
, add
, a
Compare NPM: npm install --save
co i lodash
Alias: install:dev
, i:d
, add:dev
, a:d
Compare NPM: npm install --save-dev
co i:d typescript
Alias: install:global
, i:g
, add:global
, a:g
Compare NPM: npm install --global
co i:g typescript
Alias: update
, up
, upgrade
Compare NPM: npm upgrade
co up
Alias: uninstall
, un
, remove
, rm
Compare NPM: npm uninstall
co rm jquery