开发者社区 问答 正文

nodejs镜像中的文档缺失了N-API的部分

任何版本的nodejs镜像,打开docs中的N-API的连接返回均为Not Found,例如:https://npm.taobao.org/mirrors/node/latest-dubnium/docs/api/n-api.html

查看镜像文件夹中也确实没有这个文件。

请问这是有意为之?还是一个Bug?

展开
收起
clarkttfu 2020-10-06 15:41:07 861 分享 版权
来自: 镜像站
2 条回答
写回答
取消 提交回答
  • 淘宝npm镜像站全新上线,Web界面地址:npmmirror.com;npm 客户端使用地址:registry.npmmirror.com

    2021-09-18 12:20:18
    赞同 展开评论
  • 下面就是切换npm镜像源的方法有三种:

    1.通过config命令

    npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正确这个命令会有字符串response) 2.命令行指定

    npm --registry https://registry.npm.taobao.org info underscore 3.编辑~/.npmrc加入下面内容

    registry = https://registry.npm.taobao.org

    2021-02-14 01:00:54
    赞同 展开评论
问答分类:
问答地址: