codecamp

npm 浏览 explore

浏览已安装的包

概要

npm explore <pkg> [ -- <command>]

描述

在指定的已安装包的目录中生成一个子shell。

如果指定了命令,则它会在子 shell 中运行,然后立即终止。

这对于node_modules文件夹中的 git 子模块尤其方便 :

npm explore some-dependency -- git pull origin master

请注意,之后不会自动重新生成包,因此如果你进行任何更改,请确保使用npm rebuild <pkg>

配置

shell

  • 默认值:SHELL 环境变量,或 Posix 上的bash,或 Windows 上的cmd
  • 类型:String

npm explore命令运行的 shell 。

npm 解释 explain
npm 查找重复项 find-dupes
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }