Node.js& npm:如何创建自定义npm cli命令?

时间:2016-04-27 10:20:49

标签: node.js npm

例如,我经常使用npm list -g -depth 0作为命令,我想用npm listCnpm list -c1对其进行别名。

我该怎么做?

1 个答案:

答案 0 :(得分:13)

您可以使用npm scripts为自定义命令创建快捷方式。

在你的package.json中你可能有:

{
    "scripts": {
        "listC": "npm list -g depth 0"
    }
} 

然后您可以使用npm run listC运行它。