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.
嗨,我有一个模块,我有 tar.gz 并保存在一个目录中。当我执行以下命令时
npm install foo.tar.gz -g
我的文件夹没有安装它给我一个错误,说我的文件夹在 npm 注册表中不可用。有没有其他方法可以在不使用 npm 的情况下安装,我被困在这里。任何帮助都会很有帮助
如果您只想在本地安装模块:
node_modules
节点模块只是文件夹。当你使用
npm install mymodule
你只是在你的 node_modules 文件夹中得到一个文件夹所以只需将你的模块解压缩到 node_modules 目录下具有所需名称的文件夹中