前端人员如何在linux服务器上搭建npm私有库

为什么要搭建npm私有库?
  1. 为了方便下载时,公共包走npmjs,私有包走内部服务器。
  2. npm包下载的速度较慢,搭建npm私有库之后,会先操作私有库中是否有缓存,有缓存直接走缓存,而不用重新再去请求一遍网络。
哪种方式适合你呢?

npm私有库的搭建有很多种,具体哪种方式适合,我选择的方案是比较简单的“使用verdaccio搭建npm私有库”。

先试着在本地搭建一个吧

  1. 准备工作

    我们需要使用npm命令去安装verdaccio,所以我们必须要有node环境,node环境又依赖于python。因此,在搭建npm私有库的准备工作就是去搭建node环境。

    1. 检测是否有node环境

      chenwentaodeiMac:ceair_wallet chenwentao$ node -v
      bash: node: command not found
      复制代码
    2. 下载node

    3. 安装node

    4. 检验是否安装成功

      chenwentaodeiMac:ceair_wallet chenwentao$ node -v
      v10.15.1
      复制代码
  2. 安装启动verdaccio
    1. 安装verdaccio

      安装速度缓慢的话,可以使用淘宝镜像,install时遇到permission denied,记得前面加sudo

      chenwentaodeiMac:ceair_wallet chenwentao$ sudo cnpm install -g verdaccio
      复制代码
    2. 启动verdaccio

      启动成功后,打开http://localhost:4873/,看到界面就表示成功了

      chenwentaodeiMac:ceair_wallet chenwentao$ verdacciowarn --- config file  - /Users/chenwentao/.config/verdaccio/config.yaml  //配置文件warn --- Plugin successfully loaded: htpasswd //保存用户账户、密码等信息warn --- Plugin successfully loaded: auditwarn --- http address - http://localhost:4873/ - verdaccio/3.11.4 //地址
      复制代码
  3. 配置文件

    默认的配置文件允许所有的用户拥有任何的权限。

    #
    # 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/verdaccio/verdaccio/tree/master/conf
    ## path to a directory with all packages 存储npm包的路径
    storage: ./storage
    # path to a directory with plugins to include
    plugins: ./pluginsweb:# WebUI is enabled as default, if you want disable it, just uncomment this line # web页面的配置 即上面的http://localhost:4873/ 默认为可访问。title就是标题,可以修改#enable: falsetitle: Verdaccioauth:
    # 保存用户账户、密码等信息文件,可以将max_users设置为-1禁止用户添加,从而通过修改htpasswd来添加用户htpasswd:file: ./htpasswd# Maximum amount of users allowed to register, defaults to "+inf".# You can set this to -1 to disable registration.#max_users: 1000# a list of other known repositories we can talk to
    # 访问公共库的路径,可以修改成淘宝镜像 https://registry.npm.taobao.org
    uplinks:npmjs:url: https://registry.npmjs.org/packages:'@*/*':# scoped packagesaccess: $allpublish: $authenticatedproxy: npmjs'**':# 配置权限# 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' registryproxy: npmjs# You can specify HTTP/1.1 server keep alive timeout in seconds for incomming connections.
    # A value of 0 makes the http server behave similarly to Node.js versions prior to 8.0.0, which did not have a keep-alive timeout.
    # WORKAROUND: Through given configuration you can workaround following issue https://github.com/verdaccio/verdaccio/issues/301. Set to 0 in case 60 is not enought.
    server:keepAliveTimeout: 60# To use `npm audit` uncomment the following section
    middlewares:audit:enabled: true# log settings
    logs:- {type: stdout, format: pretty, level: http}#- {type: file, path: verdaccio.log, level: info}
    #  配置之后相同wifi下其他电脑也可以访问了 访问地址为你的ip加上端口4873
    listen: 0.0.0.0:4873复制代码
  4. 客户端配置

    本地的私有仓库已经搭建好了,接下来我们需要通过客户端配置registry来使用我们的私有仓库。在浏览器中打开http://10.68.18.154:4873/时,会有提示(10.68.18.154是本机的IP地址)

    Login:

    npm adduser --registry  http://10.68.18.154:4873
    复制代码

    Publish:

    npm publish --registry http://10.68.18.154:4873
    复制代码

在linux服务器上尝试一下

刚才,我们在本地构建了一个npm私有库,现在我们到Linux服务器上尝试一下吧。首先,检测一下有没有安装node和python,如果没有安装就进行安装,那么我们接下来来安装一下。

  1. 安装python

    在Linux上安装python,需要用命令行去操作。

    下载

    解压

  2. 安装node

    下载

    解压

    接下来和本地一样去创建npm私有库,创建完之后让我们永久的运行verdaccio吧。

  3. 永久运行verdaccio

    sudo npm install -g forever
    forever start `which verdaccio`
    复制代码

转载于:https://juejin.im/post/5c92dbadf265da611360391e

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/275563.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

硬币 假硬币 天平_小东西叫硬币

硬币 假硬币 天平During the last 1,5 years, I’ve been traveling a lot. Apart from my must-have things like laptop, sketchbook, and power bank, there constantly appears a new one, in a familiar shape but a new look. That’s 在过去的1.5年中,我经常…

Linux创建一个用户时分配组,useradd和groupadd(Linux创建用户\用户组\设置\分配用户权限)的使用...

前言:man useradd    man groupadd    info useradd    info groupadd 都可以获取相关命令的用法信息。个人比较喜欢读英文解释文档,没有你想象的那么complicated!😜USERADD(8) System Management Commands USERADD…

尤雨溪发布的Vue 3.2 有哪些新变化?

大家好,我是若川。今天分享一篇 Vue 3.2 版本的文章。查看源码等系列文章。学习源码整体架构系列、年度总结、JS基础系列1前言8.10号凌晨,尤雨溪在微博平台官宣 Vue 3.2 版本正式发布:此版本包含一系列重要的新功能与性能改进,但并…

对象的清除

调用System.gc() 请求垃圾回收的最简单的方法,但是注意——只是请求,在调用System.gc()之后,有可能会释放出更多的内存空间。转载于:https://www.cnblogs.com/happykakeru/archive/2011/04/09/2010030.html

https://zeplin.io/ 设计图标注及切图

2019独角兽企业重金招聘Python工程师标准>>> https://zeplin.io/ 转载于:https://my.oschina.net/soho00147/blog/3025646

更好的设计接口_设计可以而且必须做得更好

更好的设计接口We live in a world that becomes more dependent on technology every day. Tech gives us new ways to communicate, learn, work, and play, and recently it enabled us to reveal the appalling police brutality towards black people in the US by sharin…

linux隐写文件剥离,杂项的基本解题思路(1)——文件操作隐写、图片隐写

文件操作隐写图片隐写压缩文件处理流量取证技术文章本来是分成4部分的,但是前两部分何在一起写了也就没有分开,所以干脆就只分了两部分文件基本类型的识别一、kail 下file 文件名原理就是识别文件文件头比如这个软件:二、WinHex通过winhex分析…

账务管理系统

2011-04-11 21:55最近写了一个账务管理系统(个人版)使用C#语言编写,编译器VS2010,数据库Access2010,系统采用三层架构,界面可以换肤, 窗体按钮可以移动,可以自定义皮肤,保…

初学者也能看懂的 Vue3 源码中那些实用的基础工具函数

1. 前言大家好,我是若川。最近组织了源码共读活动。每周读 200 行左右的源码。很多第一次读源码的小伙伴都感觉很有收获,感兴趣可以加我微信ruochuan12,拉你进群学习。写相对很难的源码,耗费了自己的时间和精力,也没收…

Flutter RichText支持自定义文字背景

extended text 相关文章 Flutter RichText支持图片显示和自定义图片效果Flutter RichText支持自定义文本溢出效果Flutter RichText支持自定义文字背景Flutter RichText支持特殊文字效果之前介绍过了Extended text,老规矩上图 UI设计说,那个字可以加个卟呤…

细说 Vue.js 3.2 关于响应式部分的优化

大家好,我是若川。上一篇写的是:初学者也能看懂的 Vue3 源码中那些实用的基础工具函数。今天再分享一篇 Vue 3.2 的文章。学习源码整体架构系列、年度总结、JS基础系列背景Vue 3 正式发布距今已经快一年了,相信很多小伙伴已经在生产环境用上了…

linux 运行apj,pxe+ris-linux实现在DELL R710上网络安装windows2003

一、前言网络远程安装windows2003,目前有两种方法:一就是通过windows自带的远程安装服务(RIS,Remote Installation Service),但这种方法需要用windows做为源服务器,需要安装域控制器,dhcp,tftp等…

Debian Security Advisory(Debian安全报告) DSA-4411-1 firefox-esr security update

Debian Security Advisory(Debian安全报告) DSA-4411-1 firefox-esr security update Package :firefox-esr CVE ID: CVE-2018-18506 CVE-2019-9788 CVE-2019-9790 CVE-2019-9791 CVE-2019-9792 CVE-2019-9793 CVE-2019-9795 CVE-2019-9796 CVE…

Entity framework WhereInExtension

摘自 http://www.cnblogs.com/ejiyuan/archive/2009/07/20/1527224.html publicstaticclassWhereInExtension {privatestaticExpression<Func<TElement, bool>>BuildWhereInExpression<TElement, TValue>(Expression<Func<TElement, TValue>>pro…

写给初中级前端的高级进阶指南

大家好&#xff0c;我是若川。最近组织了源码共读活动。每周读 200 行左右的源码。很多第一次读源码的小伙伴都感觉很有收获&#xff0c;感兴趣可以加我微信ruochuan12&#xff0c;拉你进群学习。前言我曾经一度很迷茫&#xff0c;在学了 Vue、React 的实战开发和应用以后&…

Spring Boot Log4j2 日志学习

简介 Java 中比较常用的日志工具类&#xff0c;有&#xff1a; Log4j、SLF4j、Commons-logging&#xff08;简称jcl&#xff09;、Logback、Log4j2&#xff08;Log4j 升级版&#xff09;、Jdk LoggingSpring Boot 默认使用 Logback&#xff0c;但相比较而言&#xff0c;Log4j2 …

学习java过程中

今天看了一个java的代码&#xff0c;结果出现Class bytes found but defineClass()failed for的错误&#xff0c;在网上google了一把&#xff0c;找到原因是&#xff1a;我的编译环境的jdk和代码的jdk不一致&#xff0c;比原来的jdk要高。换一下就解决了。转载于:https://www.c…

linux系统远程教程,Linux下实现远程协助

一、检查系统是否安装有tcl和expect这2个软件包[rootlocalhost:~]$ rpm -qa | grep tcltcl-8.4.7-2tclx-8.3.5-4[rootlocalhost:~]$ rpm -qa | grep expectexpect-5.42.1-1二、检查是否有kibitz命令[rootlocalhost:~]$ whereis kibitzkibitz: /usr/bin/kibitz /usr/share/man/m…

图片相似度对比原理_设计原理:对比和相似性的应用

图片相似度对比原理You know why you are able to read this article right now apart from the availability of your eyes, internet, device, etc.? What is the font color of this text you’re reading? — Black. What is the background color of this page you’re …

学习尤雨溪写的 Vue3 源码中的简单工具函数

大家好&#xff0c;我是若川。最近组织了源码共读活动。每周读 200 行左右的源码。很多第一次读源码的小伙伴都感觉很有收获&#xff0c;感兴趣可以加我微信ruochuan12&#xff0c;拉你进群学习。初学者也能看懂的 Vue3 源码中那些实用的基础工具函数本文是纪年小姐姐源码共读第…