如何为dr.js包含依赖项?

时间:2015-04-01 05:26:06

标签: node.js dependencies npm

我正在尝试将dr.js安装为我的javascript文档。 这是一个链接:https://www.versioneye.com/nodejs/dr.js/0.1.1

我使用node.js和npm所以我安装了。 我可以看到有依赖关系。这些是什么?我如何处理依赖关系?有谁知道如何安装dr.js?

如何包含依赖项?

我做了

npm install dr.js@0.1.1

我得到了

dr.js@0.1.1 ../node_modules/dr.js
├── eve@0.5.0
├── dot@1.0.3
├── markdown@0.5.0 (nopt@2.1.2)
└── topcoat@0.7.5 (topcoat-utils@0.1.3, topcoat-range-base@0.0.3, topcoat-list@0.5.0, topcoat-textarea@0.3.0, topcoat-switch-base@0.1.0, topcoat-search-input-base@0.1.2, topcoat-tab-bar@0.1.0, topcoat-radio-button-base@0.1.1, topcoat-input-base@0.4.1, topcoat-checkbox-base@0.1.3, topcoat-checkbox@0.4.0, topcoat-notification@0.1.1, topcoat-icon-button@0.3.4, topcoat-button-bar-base@0.1.5, topcoat-notification-base@0.0.1, topcoat-textarea-base@0.3.2, topcoat-button-base@0.6.1, topcoat-list-base@0.4.1, topcoat-button-bar@0.1.1, topcoat-radio-button@0.1.2, topcoat-text-input@0.3.4, topcoat-theme@0.5.24, topcoat-search-input@0.3.3, topcoat-button@0.5.5, topcoat-switch@0.1.4, topcoat-range@0.1.0, topcoat-navigation-bar-base@0.4.0, topcoat-navigation-bar@0.4.2)

此输出是什么意思?这是否意味着安装完成? 我是node.js和npm的新手。

1 个答案:

答案 0 :(得分:0)

这意味着您在node_modules目录中安装了dr.js及其依赖项。如果打开dr.js目录,您将看到node_modules文件夹中安装了它的依赖项,例如dot,markdown。

以下将安装最新版本:

npm install dr.js

这将安装版本0.1.1:

npm install dr.js@0.1.1