Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 npm 包,我想要 为我的 npm 包添加date-npm包 如何将此包包含到我的 npm 包中,无论如何?
如果您只是构建一个 npm 库,那么只需在您的 package.json 依赖项中包含日期库。一旦用户安装了您的库,npm 将负责其余的工作。
只需执行
npm install date-npm
在你的包裹里。
一旦你的包发布,任何安装你的包的人,比如:
npm install your-groovy-package-here
将date-npm与您的包可能具有的任何其他依赖项一起安装。
date-npm