2019-05-26 12:40:49 +02:00
![verdaccio logo ](https://cdn.verdaccio.dev/readme/verdaccio@2x.png )
2018-05-29 22:43:53 +02:00
2019-05-26 12:40:49 +02:00
![verdaccio gif ](https://cdn.verdaccio.dev/readme/readme-website.png )
2016-04-15 19:34:05 +02:00
2023-08-20 18:43:30 +02:00
# Version 6
2019-01-20 10:34:10 +01:00
[Verdaccio ](https://verdaccio.org/ ) is a simple, **zero-config-required local private npm registry** .
No need for an entire database just to get started! Verdaccio comes out of the box with
**its own tiny database**, and the ability to proxy other registries (eg. npmjs.org),
caching the downloaded modules along the way.
For those looking to extend their storage capabilities, Verdaccio
**supports various community-made plugins to hook into services such as Amazon's s3,
2018-11-06 06:46:58 +01:00
Google Cloud Storage** or create your own plugin.
2018-02-11 12:30:16 +01:00
2018-11-06 06:46:58 +01:00
[![verdaccio (latest) ](https://img.shields.io/npm/v/verdaccio/latest.svg )](https://www.npmjs.com/package/verdaccio)
2020-01-15 20:09:31 +01:00
[![verdaccio (downloads) ](https://img.shields.io/npm/dy/verdaccio.svg )](https://www.npmjs.com/package/verdaccio)
2018-11-06 06:46:58 +01:00
[![docker pulls ](https://img.shields.io/docker/pulls/verdaccio/verdaccio.svg?maxAge=43200 )](https://verdaccio.org/docs/en/docker.html)
[![backers ](https://opencollective.com/verdaccio/tiers/backer/badge.svg?label=Backer&color=brightgreen )](https://opencollective.com/verdaccio)
2019-03-29 06:37:53 +01:00
[![stackshare ](https://img.shields.io/badge/Follow%20on-StackShare-blue.svg?logo=stackshare&style=flat )](https://stackshare.io/verdaccio)
2018-11-06 06:46:58 +01:00
2023-01-19 00:21:28 +01:00
[![discord ](https://img.shields.io/discord/388674437219745793.svg )](https://discord.gg/7qWJxBf)
2019-10-01 12:40:29 +02:00
[![MIT ](https://img.shields.io/github/license/mashape/apistatus.svg )](https://github.com/verdaccio/verdaccio/blob/master/LICENSE)
2018-11-06 06:46:58 +01:00
[![Crowdin ](https://d322cqt584bo4o.cloudfront.net/verdaccio/localized.svg )](https://crowdin.com/project/verdaccio)
2018-01-18 06:55:17 +01:00
2018-11-06 06:46:58 +01:00
[![Github ](https://img.shields.io/github/stars/verdaccio/verdaccio.svg?style=social&label=Stars )](https://github.com/verdaccio/verdaccio/stargazers)
2022-06-22 21:33:01 +02:00
[![StandWithUkraine ](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg )](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)
2017-07-16 09:21:10 +02:00
2018-11-06 06:46:58 +01:00
## Install
Install with npm:
2024-01-07 11:36:17 +01:00
> Consider `latest-6` tag as not a definitive release.
2018-11-06 06:46:58 +01:00
```bash
2024-01-07 11:36:17 +01:00
npm install --location=global verdaccio@latest-6
2018-11-06 06:46:58 +01:00
```
2023-09-24 11:44:25 +02:00
> Node.js v18 or higher is required for Verdaccio 6
2022-06-22 22:33:41 +02:00
or pull [Docker official image ](https://verdaccio.org/docs/docker )
```bash
docker pull verdaccio/verdaccio
```
and run
```bash
docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio
```
or with _helm_ [official chart ](https://github.com/verdaccio/charts ).
```bash
helm repo add verdaccio https://charts.verdaccio.org
helm repo update
helm install verdaccio/verdaccio
```
2021-03-29 13:09:37 +02:00
2022-09-03 07:16:11 +02:00
## Programmatic API
Verdaccio can be used as a module for launch a server programmatically, [you can find more info at the website ](https://verdaccio.org/docs/verdaccio-programmatically#using-the-module-api ).
```
const {runServer} = require('verdaccio');
const app = await runServer(); // default configuration
const app = await runServer('./config/config.yaml');
const app = await runServer({ configuration });
app.listen(4873, (event) => {
// do something
});
```
2022-06-22 21:33:01 +02:00
## Plugins
You can develop your own [plugins ](https://verdaccio.org/docs/plugins ) with the [verdaccio generator ](https://github.com/verdaccio/generator-verdaccio-plugin ). Installing [Yeoman ](https://yeoman.io/ ) is required.
```
2022-09-03 14:09:33 +02:00
npm install --location=global yo
npm install --location=global generator-verdaccio-plugin
2022-06-22 21:33:01 +02:00
```
Learn more [here ](https://verdaccio.org/docs/dev-plugins ) how to develop plugins. Share your plugins with the community.
2019-07-29 11:04:32 +02:00
## Donations
2019-07-29 11:03:06 +02:00
2022-05-05 07:51:15 +02:00
Verdaccio is run by **volunteers** ; nobody is working full-time on it. If you find this project to be useful and would like to support its development and maintenance.
2019-07-29 11:03:06 +02:00
2022-05-05 07:51:15 +02:00
You can donate ** [GitHub Sponsors ](https://github.com/sponsors/verdaccio )** or ** [Open Collective ](https://opencollective.com/verdaccio )** 💵👍🏻 starting from _$1/month_ or just one single contribution.
2019-07-29 11:03:06 +02:00
2018-11-06 06:46:58 +01:00
## What does Verdaccio do for me?
2013-12-21 10:06:38 +01:00
2017-07-23 00:52:45 +02:00
### Use private packages
2013-11-19 11:56:38 +01:00
2018-11-06 06:46:58 +01:00
If you want to use all benefits of npm package system in your company without sending all code to the public, and use your private packages just as easy as public ones.
2013-09-28 17:48:31 +02:00
2017-07-23 00:52:45 +02:00
### Cache npmjs.org registry
2013-11-19 11:56:38 +01:00
2021-04-09 09:16:06 +02:00
If you have more than one server you want to install packages on, you might want to use this to decrease latency
(presumably "slow" npmjs.org will be connected to only once per package/version) and provide limited failover (if npmjs.org is down, we might still find something useful in the cache) or avoid issues like _[How one developer just broke Node, Babel and thousands of projects in 11 lines of JavaScript](https://www.theregister.co.uk/2016/03/23/npm_left_pad_chaos/)_, _[Many packages suddenly disappeared](https://github.com/npm/registry-issue-archive/issues/255)_ or _[Registry returns 404 for a package I have installed before](https://github.com/npm/registry-issue-archive/issues/329)_ .
2018-09-27 22:48:14 +02:00
2018-05-29 22:43:53 +02:00
### Link multiple registries
2018-05-31 09:32:59 +02:00
If you use multiples registries in your organization and need to fetch packages from multiple sources in one single project you might take advance of the uplinks feature with Verdaccio, chaining multiple registries and fetching from one single endpoint.
2013-09-28 17:48:31 +02:00
2017-07-23 00:52:45 +02:00
### Override public packages
2013-11-19 11:56:38 +01:00
2019-10-01 07:46:22 +02:00
If you want to use a modified version of some 3rd-party package (for example, you found a bug, but maintainer didn't accept pull request yet), you can publish your version locally under the same name. See in detail [here ](https://verdaccio.org/docs/en/best#override-public-packages ).
2018-11-06 06:46:58 +01:00
### E2E Testing
2019-01-20 10:34:10 +01:00
Verdaccio has proved to be a lightweight registry that can be
2022-06-22 21:34:26 +02:00
booted in a couple of seconds, fast enough for any CI. Many open source projects use verdaccio for end to end testing, to mention some examples, **create-react-app** , **mozilla neutrino** , **pnpm** , **storybook** , **babel.js** , **angular-cli** or **docusaurus** . You can read more in [here ](https://verdaccio.org/docs/e2e ).
2022-06-22 21:33:01 +02:00
Furthermore, here few examples how to start:
2013-11-19 11:56:38 +01:00
2022-06-22 21:33:01 +02:00
- [e2e-ci-example-gh-actions ](https://github.com/juanpicado/e2e-ci-example-gh-actions )
- [verdaccio-end-to-end-tests ](https://github.com/juanpicado/verdaccio-end-to-end-tests )
- [verdaccio-fork ](https://github.com/juanpicado/verdaccio-fork )
2019-10-22 07:06:46 +02:00
2022-09-03 14:09:33 +02:00
## Talks
2021-08-06 21:35:31 +02:00
2023-09-24 11:44:25 +02:00
- [**NodeTLV 2022** - Deep dive into Verdaccio, a lightweight Node.js registry - **Juan Picado** ](https://portal.gitnation.org/contents/five-ways-of-taking-advantage-of-verdaccio-your-private-and-proxy-nodejs-registry )
2022-09-03 14:09:33 +02:00
- [Five Ways of Taking Advantage of Verdaccio, Your Private and Proxy Node.js Registry **Node Congress 2022** - **Juan Picado** ](https://portal.gitnation.org/contents/five-ways-of-taking-advantage-of-verdaccio-your-private-and-proxy-nodejs-registry )
- [Using Docker and Verdaccio to make Integration Testing Easy - **Docker All Hands #4 December - 2021** - **Juan Picado** ](https://www.youtube.com/watch?v=zRI0skF1f8I )
2022-05-05 07:51:15 +02:00
2022-09-03 14:09:33 +02:00
[View more in the YouTube channel ](https://www.youtube.com/channel/UC5i20v6o7lSjXzAHOvatt0w ).
2020-03-06 08:16:42 +01:00
2018-11-06 06:46:58 +01:00
## Get Started
2017-07-23 00:52:45 +02:00
Run in your terminal
```bash
2018-11-06 06:46:58 +01:00
verdaccio
2017-07-23 00:52:45 +02:00
```
You would need set some npm configuration, this is optional.
2013-06-09 12:22:41 +02:00
2017-07-23 00:52:45 +02:00
```bash
$ npm set registry http://localhost:4873/
2013-06-09 12:22:41 +02:00
```
2019-08-20 20:19:13 +02:00
For one-off commands or to avoid setting the registry globally:
2021-04-09 09:16:06 +02:00
2019-08-20 20:19:13 +02:00
```bash
NPM_CONFIG_REGISTRY=http://localhost:4873 npm i
```
2014-05-12 16:37:18 +02:00
Now you can navigate to [http://localhost:4873/ ](http://localhost:4873/ ) where your local packages will be listed and can be searched.
2017-07-16 08:39:21 +02:00
2019-05-26 14:20:38 +02:00
> Warning: Verdaccio [does not currently support PM2's cluster mode](https://github.com/verdaccio/verdaccio/issues/1301#issuecomment-489302298), running it with cluster mode may cause unknown behavior.
2017-08-18 18:37:58 +02:00
2019-01-20 10:34:10 +01:00
## Publishing
2017-07-23 00:52:45 +02:00
2020-11-20 16:40:09 +01:00
#### 1. create a user and log in
2017-07-23 00:52:45 +02:00
```bash
2018-11-06 06:46:58 +01:00
npm adduser --registry http://localhost:4873
2018-10-21 17:39:13 +02:00
```
2018-11-06 06:46:58 +01:00
> if you use HTTPS, add an appropriate CA information ("null" means get CA list from OS)
2018-10-21 17:39:13 +02:00
2019-01-20 10:34:10 +01:00
```bash
2018-11-06 06:46:58 +01:00
$ npm set ca null
2017-07-23 00:52:45 +02:00
```
2018-11-06 06:46:58 +01:00
#### 2. publish your package
2017-07-23 00:52:45 +02:00
```bash
2018-11-06 06:46:58 +01:00
npm publish --registry http://localhost:4873
2017-07-23 00:52:45 +02:00
```
This will prompt you for user credentials which will be saved on the `verdaccio` server.
2017-07-25 14:59:45 +02:00
2018-11-06 06:46:58 +01:00
## Docker
2017-07-23 00:52:45 +02:00
2019-10-06 20:07:36 +02:00
Below are the most commonly needed information,
2018-05-29 22:43:53 +02:00
every aspect of Docker and verdaccio is [documented separately ](https://www.verdaccio.org/docs/en/docker.html )
2017-06-24 11:59:25 +02:00
2018-11-06 06:46:58 +01:00
```
docker pull verdaccio/verdaccio
2017-07-23 00:52:45 +02:00
```
2016-10-18 18:21:54 +02:00
2018-05-29 22:43:53 +02:00
Available as [tags ](https://hub.docker.com/r/verdaccio/verdaccio/tags/ ).
2018-11-06 06:46:58 +01:00
```
2021-03-29 19:33:48 +02:00
docker pull verdaccio/verdaccio:5.x-next
2018-05-29 22:43:53 +02:00
```
2017-05-14 16:15:04 +02:00
2017-07-23 00:52:45 +02:00
### Running verdaccio using Docker
2016-10-18 18:21:54 +02:00
2017-06-22 05:56:39 +02:00
To run the docker container:
2017-07-23 00:52:45 +02:00
2017-05-14 16:15:04 +02:00
```bash
2018-11-06 06:46:58 +01:00
docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio
2017-05-14 16:15:04 +02:00
```
2017-06-18 17:23:46 +02:00
2017-07-23 00:52:45 +02:00
Docker examples are available [in this repository ](https://github.com/verdaccio/docker-examples ).
2017-01-14 21:51:18 +01:00
2018-11-06 06:46:58 +01:00
## Compatibility
2013-05-22 08:48:04 +02:00
2016-08-24 23:06:50 +02:00
Verdaccio aims to support all features of a standard npm client that make sense to support in private repository. Unfortunately, it isn't always possible.
2013-10-02 20:56:06 +02:00
2017-07-23 00:52:45 +02:00
### Basic features
2013-10-02 20:56:06 +02:00
2021-05-15 16:39:03 +02:00
- Installing packages (`npm install`, `npm upgrade` , etc.) - **supported**
- Publishing packages (`npm publish`) - **supported**
2013-10-02 20:56:06 +02:00
2017-07-23 00:52:45 +02:00
### Advanced package control
2013-10-02 20:56:06 +02:00
2021-05-15 16:39:03 +02:00
- Unpublishing packages (`npm unpublish`) - **supported**
- Tagging (`npm tag`) - **supported**
- Deprecation (`npm deprecate`) - **supported**
2013-10-02 20:56:06 +02:00
2017-07-23 00:52:45 +02:00
### User management
2013-10-02 20:56:06 +02:00
2021-05-15 16:39:03 +02:00
- Registering new users (`npm adduser {newuser}`) - **supported**
- Change password (`npm profile set password`) - **supported**
- Transferring ownership (`npm owner add {user} {pkg}`) - not supported, _PR-welcome_
- Token (`npm token`) - **supported** (under flag)
2018-10-21 17:39:13 +02:00
### Miscellany
2013-10-02 20:56:06 +02:00
2021-05-15 16:39:03 +02:00
- Search (`npm search`) - **supported** (cli (`/-/all` and `v1` ) / browser)
- Ping (`npm ping`) - **supported**
- Starring (`npm star`, `npm unstar` , `npm stars` ) - **supported**
2013-05-22 08:48:04 +02:00
2018-05-21 11:28:04 +02:00
### Security
2019-05-26 14:20:38 +02:00
- npm/yarn audit - **supported**
2018-05-21 11:28:04 +02:00
2019-05-25 22:11:13 +02:00
## Report a vulnerability
If you want to report a security vulnerability, please follow the steps which we have defined for you in our [security policy ](https://github.com/verdaccio/verdaccio/security/policy ).
2022-09-03 14:13:50 +02:00
## Contributors
2019-03-11 20:18:24 +01:00
2022-09-03 14:13:50 +02:00
| [Juan Picado ](https://github.com/juanpicado ) | [Ayush Sharma ](https://github.com/ayusharma ) | [Sergio Hg ](https://github.com/sergiohgz ) |
| ----------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------ |
| ![jotadeveloper ](https://avatars3.githubusercontent.com/u/558752?s=80&v=4 ) | ![ayusharma ](https://avatars2.githubusercontent.com/u/6918450?s=80&v=4 ) | ![sergiohgz ](https://avatars2.githubusercontent.com/u/14012309?s=80&v=4 ) |
2023-01-18 22:49:28 +01:00
| [@jotadeveloper ](https://fosstodon.org/@jotadeveloper ) | [@ayusharma\_ ](https://twitter.com/ayusharma_ ) | [@sergiohgz ](https://twitter.com/sergiohgz ) |
2022-09-03 14:13:50 +02:00
| [Priscila Oliveria ](https://github.com/priscilawebdev ) | [Daniel Ruf ](https://github.com/DanielRuf ) |
| ![priscilawebdev ](https://avatars2.githubusercontent.com/u/29228205?s=80&v=4 ) | ![DanielRuf ](https://avatars3.githubusercontent.com/u/827205?s=80&v=4 ) |
| [@priscilawebdev ](https://twitter.com/priscilawebdev ) | [@DanielRufde ](https://twitter.com/DanielRufde ) |
2019-03-11 20:18:24 +01:00
2022-09-03 14:13:50 +02:00
[See the full list of contributors is at the website. ](https://verdaccio.org/contributors )
2018-02-17 06:57:18 +01:00
2019-03-27 15:26:23 +01:00
## Who is using Verdaccio?
2022-09-03 14:09:33 +02:00
- [create-react-app ](https://github.com/facebook/create-react-app/blob/master/CONTRIBUTING.md#customizing-e2e-registry-configuration ) _(+96.2k ⭐️)_
- [Gatsby ](https://github.com/gatsbyjs/gatsby ) _(+53.5k ⭐️)_
- [Babel.js ](https://github.com/babel/babel ) _(+41.3k ⭐️)_
- [Docusaurus ](https://github.com/facebook/docusaurus ) _(+37k ⭐️)_
- [Vue CLI ](https://github.com/vuejs/vue-cli ) _(+29.4k ⭐️)_
- [Angular CLI ](https://github.com/angular/angular-cli ) _(+25.6k ⭐️)_
- [Uppy ](https://github.com/transloadit/uppy ) _(+25.8k ⭐️)_
- [pnpm ](https://github.com/pnpm/pnpm ) _(+19.2k ⭐️)_
- [bit ](https://github.com/teambit/bit ) _(+15k ⭐️)_
- [NX ](https://github.com/nrwl/nx ) _(+14.1k ⭐️)_
2021-04-09 09:16:06 +02:00
- [Aurelia Framework ](https://github.com/aurelia/framework ) _(+11.6k ⭐️)_
- [ethereum/web3.js ](https://github.com/ethereum/web3.js ) _(+9.8k ⭐️)_
2022-09-03 14:09:33 +02:00
- [webiny-js ](https://github.com/webiny/webiny-js ) _(+5.9k ⭐️)_
2021-04-09 09:16:06 +02:00
- [workshopper how to npm ](https://github.com/workshopper/how-to-npm ) _(+1k ⭐️)_
- [Amazon SDK v3 ](https://github.com/aws/aws-sdk-js-v3 )
- [Amazon Encryption SDK for Javascript ](https://github.com/aws/aws-encryption-sdk-javascript )
2019-03-27 15:26:23 +01:00
2022-06-22 21:33:01 +02:00
🤓 Don't be shy, add yourself to this readme.
2018-02-17 06:57:18 +01:00
2019-01-20 10:35:57 +01:00
## Open Collective Sponsors
2018-02-17 06:57:18 +01:00
2018-11-06 06:46:58 +01:00
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor ](https://opencollective.com/verdaccio#sponsor )]
2018-02-17 06:57:18 +01:00
2018-11-06 06:46:58 +01:00
[![sponsor ](https://opencollective.com/verdaccio/sponsor/0/avatar.svg )](https://opencollective.com/verdaccio/sponsor/0/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/1/avatar.svg )](https://opencollective.com/verdaccio/sponsor/1/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/2/avatar.svg )](https://opencollective.com/verdaccio/sponsor/2/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/3/avatar.svg )](https://opencollective.com/verdaccio/sponsor/3/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/4/avatar.svg )](https://opencollective.com/verdaccio/sponsor/4/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/5/avatar.svg )](https://opencollective.com/verdaccio/sponsor/5/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/6/avatar.svg )](https://opencollective.com/verdaccio/sponsor/6/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/7/avatar.svg )](https://opencollective.com/verdaccio/sponsor/7/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/8/avatar.svg )](https://opencollective.com/verdaccio/sponsor/8/website)
[![sponsor ](https://opencollective.com/verdaccio/sponsor/9/avatar.svg )](https://opencollective.com/verdaccio/sponsor/9/website)
2018-02-17 06:57:18 +01:00
2019-01-20 10:35:57 +01:00
## Open Collective Backers
2018-02-17 06:57:18 +01:00
2018-11-06 06:46:58 +01:00
Thank you to all our backers! 🙏 [[Become a backer ](https://opencollective.com/verdaccio#backer )]
2018-02-17 06:57:18 +01:00
2018-11-06 06:46:58 +01:00
[![backers ](https://opencollective.com/verdaccio/backers.svg?width=890 )](https://opencollective.com/verdaccio#backers)
2019-05-26 14:20:38 +02:00
## Special Thanks
Thanks to the following companies to help us to achieve our goals providing free open source licenses.
[![jetbrain ](assets/thanks/jetbrains/logo.png )](https://www.jetbrains.com/)
[![crowdin ](assets/thanks/crowdin/logo.png )](https://crowdin.com/)
2020-05-21 09:09:42 +02:00
[![browserstack ](https://cdn.verdaccio.dev/readme/browserstack_logo.png )](https://www.browserstack.com/)
2021-04-09 09:16:06 +02:00
Verdaccio also is part of to the [Docker Open Source Program ](https://www.docker.com/blog/expanded-support-for-open-source-software-projects/ ).
2019-05-26 14:20:38 +02:00
2018-11-06 06:46:58 +01:00
## Contributors
This project exists thanks to all the people who contribute. [[Contribute ](CONTRIBUTING.md )].
2019-10-06 20:07:36 +02:00
[![contributors ](https://opencollective.com/verdaccio/contributors.svg?width=890&button=true )](../../graphs/contributors)
2018-11-06 06:46:58 +01:00
### FAQ / Contact / Troubleshoot
2018-05-29 22:43:53 +02:00
If you have any issue you can try the following options, do no desist to ask or check our issues database, perhaps someone has asked already what you are looking for.
2021-04-09 09:16:06 +02:00
- [Blog ](https://verdaccio.org/blog/ )
- [Donations ](https://github.com/sponsors/verdaccio )
- [Reporting an issue ](https://github.com/verdaccio/verdaccio/issues/new/choose )
- [Running discussions ](https://github.com/verdaccio/verdaccio/issues?q=is%3Aissue+is%3Aopen+label%3Adiscuss )
2022-06-22 21:33:01 +02:00
- [Chat ](https://discord.gg/7qWJxBf )
2021-04-09 09:16:06 +02:00
- [Logos ](https://verdaccio.org/docs/en/logo )
- [Docker Examples ](https://github.com/verdaccio/verdaccio/tree/master/docker-examples )
- [FAQ ](https://github.com/verdaccio/verdaccio/discussions/categories/q-a )
2018-02-17 06:57:18 +01:00
2018-11-06 06:46:58 +01:00
### License
2018-01-06 18:34:51 +01:00
2018-05-29 23:03:51 +02:00
Verdaccio is [MIT licensed ](https://github.com/verdaccio/verdaccio/blob/master/LICENSE )
2021-04-09 09:16:06 +02:00
The Verdaccio documentation and logos (excluding /thanks, e.g., .md, .png, .sketch) files within the /assets folder) is
[Creative Commons licensed ](https://creativecommons.org/licenses/by/4.0/ ).