我将计算机本地节点模块kappa安装在目录kappa-server中,如下所述:https://github.com/xjamundx/kappa/tree/patch-1#quickstart

我的config.json看起来是:

{
    "servers": [
        {
            "host": "localhost",
            "port": 8000
        }
    ],
    "plugins": {
        "kappa": {
            "paths": [
                "https://registry.npmjs.org/"
            ]
        }
    }
}


如果我卷曲用于验证的命令:http://localhost:8000/-/all
表明:
{"statusCode":404,"error":"Not Found"}

我现在必须在哪个目录中放置自己的存储库,从本地npm存储库克隆存储库的命令是什么?
我找不到答案。

最佳答案

我必须先安装一个真正的npm存储库。像reggie或npmjs.org

关于node.js - 如何使用 Node 模块kappa?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22228749/

10-11 10:18