windows 环境部署私有 npm 源

sinopia 是一个零配置带缓存功能的 npm 包管理工具。

sinopia 有以下几个优势值得关注:

  1. 不同步拉取 npm 库,占据大量硬盘,没有硬盘被撑爆的问题;
  2. 安装配置极其简单,不需要数据库;
  3. 支持配置上游 registry 配置,一次拉取即缓存;
  4. 支持 forever 及 pm2 守护进程管理;

服务器部署

安装

> npm install -g sinopia

启动

> sinopia
    warn  --- config file  - C:\Users\jason\AppData\Roaming\sinopia\config.yaml
    warn  --- http address - http://localhost:4873/

打开 http://localhost:4873/ 如果能正常显示,说明安装成功。

sinopia 启动时默认会创建 config.yaml 文件,文件路径可以看输出的提示。我们将上面路径的 config.yaml 拷贝到指定盘符的文件夹下,使用 -c 选项指定配置文件,并执行命令:

> sinopia -c D:\sinopia\config.yaml

现在我们就可以在指定目录下运行了,以后上传的 npm 包也会放在这个目录中。

配置

config.yaml 是用来配置访问权限,代理,文件存储路径等所有配置信息的:

#
# This is the default config file. It allows all users to do anything,
# so don‘t use it on production systems.
#
# Look here for more config file examples:
# https://github.com/rlidwka/sinopia/tree/master/conf
#

# path to a directory with all packages
storage: ./storage  //npm包存放的路径

auth:
  htpasswd:
    file: ./htpasswd   //保存用户的账号密码等信息
    # Maximum amount of users allowed to register, defaults to "+inf".
    # You can set this to -1 to disable registration.
    max_users: -1  //默认为1000,改为-1,禁止注册

# a list of other known repositories we can talk to
uplinks:
  npmjs:
    url: http://registry.npm.taobao.org/  //默认为npm的官网,由于国情,修改 url 让sinopia使用 淘宝的npm镜像地址

packages:  //配置权限管理
  ‘@*/*‘:
    # scoped packages
    access: $all
    publish: $authenticated

  ‘*‘:
    # allow all users (including non-authenticated users) to read and
    # publish all packages
    #
    # you can specify usernames/groupnames (depending on your auth plugin)
    # and three keywords: "$all", "$anonymous", "$authenticated"
    access: $all

    # allow all known users to publish packages
    # (anyone can register by default, remember?)
    publish: $authenticated

    # if package is not available locally, proxy requests to ‘npmjs‘ registry
    proxy: npmjs

# log settings
logs:
  - {type: stdout, format: pretty, level: http}
  #- {type: file, path: sinopia.log, level: info}

# you can specify listen address (or simply a port)
listen: 0.0.0.0:4873  ////默认没有,只能在本机访问,添加后可以通过外网访问。

客户端使用

全局安装 nrm 可以快速修改/切换/增加 npm 镜像地址:

> npm install -g nrm                  # 安装nrm
> nrm add XXXX http://XXXXXX:4873     # 添加私有 npm 镜像地址
> nrm use XXXX                        # 使用私有镜像地址

注意: 不建议使用私有源安装公网 npm 包,安装公网 npm 包请使用 taobao 源

  1. 需要安装私有 npm 包时,请执行 nrm use sinopia 切换到私有 npm 源
  2. 安装公有 npm 包时,请执行 nrm use taobao 切换到淘宝源安装

nrm 其他命令:

> nrm --help            # 查看nrm命令帮助
> nrm list              # 列出可用的 npm 镜像地址
> nrm use taobao        # 使用`淘宝npm`镜像地址

常用 npm 命令

注册发布者

> npm adduser                        # 按提示输入用户名,密码,邮箱即可

登陆 npm 源

> npm login                          # 按提示输入用户名,密码,邮箱即可

发布 npm 包

> cd D:\projects\yourproject         # 进入项目目录
> npm publish                        # 执行发布命令

删除 npm 包

> npm unpublish <package>@<version>  # 例: npm unpublish [email protected]

删除发布者

> npm <owner> rm <user> <package>    # 例: npm admin rm test flagwind

查看模块所有者

> npm <owner> ls <package>           # 例: npm admin ls flagwind

安装问题

在 Windows 下直接执行这个命令会遇到一些问题:

1、Python 没有安装或版本不对

gyp ERR! stack Error: Can‘t find Python executable "python", you can set the PYTHON env variable.

解决方案: node-gyp 依赖 Python 2.7,安装 Python2.7 并把它添加到环境变量 PATH 中。

> npm config set python C:\Python27\python.exe

2、MSBuild 版本不对

MSBUILD : error MSB4132: The tools version "2.0" is unrecognized. Available too ls versions are "4.0"

解决方案: node-gyp 需要用到 Visual C++ Build Tools,百度搜索并安装即可。

3、Windows下不支持 fs-ext 和 crypt3

node-gyp 报编译 fs-ext 和 crypt3 失败的错误,安装 sinopia 时可以忽略,错误信息如下:

fs-ext.cc(195): error C3861: ‘fcntl‘: identifier not found [C:\Users\clcaza\AppData\Roaming\npm\node_modules\sinopia\node_modules\.0.[email protected]\build\fs-ext.vcxproj]

crypt3.cc(5): fatal error C1083: Cannot open include file: ‘unistd.h‘: No such file or directory [C:\Users\clcaza\AppData\Roaming\npm\node_modules\sinopia\node\_modules\.0.[email protected]\build\crypt3.vcxproj]

解决方案: sinopia 依赖于 fs-extcrypt3,但这两个包是可选的,搜索并删除 sinopia 安装目录下所有带 fs-extcrypt3 字样的包

来源:https://www.jianshu.com/p/c2a569be60a9

原文地址:https://www.cnblogs.com/yema-home/p/11022327.html

时间: 2024-10-10 08:02:52

windows 环境部署私有 npm 源的相关文章

PHP Windows环境部署

1. 说明 本文用来在windows环境下手工搭建PHP开发环境,安装的功能模块主要包含MySQL,PHP以及Apache三个,环境如下: l Window7(64位) l MySQL 5.7.14 l PHP 5.6(64位) l Apache 2.4.23(64位) 为了方面管理与配置,我们将所有的功能模块都安装在C盘的PHP目录下. 2. MySQL 2.1 安装 下载地址:http://dev.mysql.com/downloads/installer/ 双击下载的程序进行安装 2.2

windows环境下安装npm、cnpm、bower

什么是npm.cnpm.bower? 简单地说,就是帮你下载好你需要的css或者js库,而且三者功能也都是一样的.那为什么要下载这3个不同的呢?据说npm容易被墙--而cnpm是淘宝的镜像,所以通常用cnpm代替npm.至于bower,是因为bower更多地用于前端开发.但是因为它也是依赖于npm的,所以没有npm,就没法载bower--不知道说了那么多你懂了没,但是这不重要~你所需要做的就是分别安装这3个,然后将bower为己所用. 安装npm 前往nodejs官网下载nodejs,https

LAMP环境部署:Apache源码安装+MySQL二进制安装+PHP源码安装+Nginx源码安装

Apache 版本:2.2.27 MySQL 版本:5.5.54-linux2.6-x86_64PHP 版本:5.3.27一.源码安装Apache1.首先安装上传工具2.上传LAMP环境所需安装包3.解压所有安装包4.安装Apache依赖包5.创建安装目录6.配置安装文件./configure \ #./configure 是用来生成Makefile文件用于编译安装 --prefix=/application/apache-2.2.27 \ #指定安装目录--enable-deflate \ #

RabbitMQ Windows环境部署记录

参考自https://blog.csdn.net/h363659487/article/details/80913354 1.安装erl环境    安装https://www.erlang.org/downloads 2.安装RabbitMQ   安装https://www.rabbitmq.com/download.html 3.开始做准备工作   ①配置erl环境变量 ②查看rabbitMQ服务是否启动 4.通过命令添加可视化插件  rabbitmq-plugins enable rabbi

windows环境,下载android源码

参考http://blog.csdn.net/freekiteyu/article/details/70939672 1.安装git 2.安装python 3.git操作如下 进入想要下载的文件夹,右键git-bash :git clone https://android.googlesource.com/platform/manifest.git cd manifest git checkout android-6.0.1_r79 4.python操作如下 编辑脚本 打开python的编辑器-

私有npm计划

为什么要建立私有npm 提高代码复用程度,增加团队沉淀 剥离项目依赖,工程更加轻量 引用全量更新,支持版本降级 建立模块文档,降低上手难度 全员把关代码质量,无需重复测试 构建工具已成趋势,优化发布流程,减少手动工作,提高团队效率 增强团队代码交流 内部保密机制 要做的工作 搭建私有 npm 环境 探索 npm 使用工作流 npm 对接 OA,做好权限控制 npm 上传规范制定 现有组件上传 npm 要做的改造 使用 git 维护源码库 git 与 npm publish 联动,实现自动测试.构

Windows环境下搭建Redis

当网站从数据库加载大量数据的时候会遇到页面响应速度特别缓慢的情形,为了能够更快的从数据库中取得数据加载至内存中,可以考虑使用Memcached来做数据缓存,或者使用内存数据库(比如Redis)将数据库的内容加载至内存中以键值对的形式存储,当页面请求数据的时候可以直接从内存数据库中获取,从而提高了网站的响应速度. Redis在官方文档中声明推荐在Linux环境下安装部署,但实际情况下会有很多开发者需要在Windows环境下解决以上类似的问题并想要采取Redis方案来解决问题,好在微软开放了这方面的

Python的环境部署

一.Windows 环境部署 点击下载_Python 点击查看安装方式 就这么简单的路过,呵呵哒........ 二.Linux环境部署 环境Centos6.6 Centos6.6默认是2.6版本

用nrm一键切换npm源

当使用官方npm源安装各种包比较慢的时候,建议修改npm源地址 查看npm源地址,在终端输入以下命令 npm config list 会看到官方的npm源 metrics-registry = "https://registry.npmjs.org/" 国内常用的镜像地址如淘宝npm:https://registry.npm.taobao.org/ 修改registry地址很简单,在终端输入 npm set registry https://registry.npm.taobao.or