作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 index.js 文件中,我想加载一个存储函数的外部 js 库。从长远来看,我会把它变成一个模块,但现在我需要制作原型(prototype)。它不是 Node 的一部分,所以我不能将它放入 node_modules
。命令是什么?
我在同一文件夹中有 index.js
和 functions.js
。
最佳答案
An explanation of how node loads modules via require
is found here
您必须通过以 /
或 ./
开头的路径来指定要包含的文件的路径(相对或绝对)
var functions = require("./functions");
关于javascript - 哈皮 : include a js custom library,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29268811/
我是一名优秀的程序员,十分优秀!