如何在我的网站中使用节点包?

时间:2017-06-06 05:22:16

标签: angularjs node.js

我正在研究angularjs中的项目。我想在当前运行的角度项目中使用节点模块,我将如何在该项目中添加节点模块。

1 个答案:

答案 0 :(得分:0)

如果您使用npm然后npm install <package_name>来安装软件包。这将默认将软件包安装到node_modules文件夹

然后在index.html中包含via script标记

<script src="./path/to/node_module/package.js"></script>

或使用样式

<link rel="stylesheet" type="text/css" href="path/to/node_module/package.css">