verdaccio/README.md

226 lines
10 KiB
Markdown
Raw Normal View History

2018-05-29 22:43:53 +02:00
<div align="center">
<a href="https://www.verdaccio.org/">
2018-05-29 23:01:56 +02:00
<img src="https://github.com/verdaccio/verdaccio/raw/master/assets/bitmap/verdaccio%402x.png">
2018-05-29 22:43:53 +02:00
</a>
<br>
<br>
2018-06-01 06:35:28 +02:00
<h1>Version 3 Released 🎉</h1>
2018-06-08 07:42:54 +02:00
<h5>
<a target="_blank" href="https://medium.com/verdaccio/verdaccio-3-released-feb06ef38558">
All the new features you need to know
</a>
</h5>
2018-05-29 22:43:53 +02:00
</div>
<div align="center">
2018-05-30 21:19:29 +02:00
<p>
2018-06-08 07:42:54 +02:00
A lightweight private npm proxy registry
2018-05-29 22:43:53 +02:00
</p>
<a href="https://www.npmjs.org/package/verdaccio"><img alt="npm version" src="https://img.shields.io/npm/v/verdaccio.svg"></a>
2018-05-30 21:19:29 +02:00
<a href="https://circleci.com/gh/verdaccio/verdaccio"><img alt="CircleCI Status" src="https://circleci.com/gh/verdaccio/verdaccio.svg?style=shield&circle-token=:circle-token"></a>
<a href="https://codecov.io/github/verdaccio/verdaccio"><img alt="Coverage Status" src="https://img.shields.io/codecov/c/github/verdaccio/verdaccio/master.svg"></a>
<a href="https://www.npmjs.org/package/verdaccio"><img alt="npm Downloads" src="http://img.shields.io/npm/dm/verdaccio.svg"></a>
2018-05-29 22:43:53 +02:00
<a href="https://hub.docker.com/r/verdaccio/verdaccio/"><img alt="npm Downloads" src="https://img.shields.io/docker/pulls/verdaccio/verdaccio.svg?maxAge=43200"></a>
2018-07-04 21:28:55 +02:00
<a href="https://www.browserstack.com/automate/public-build/am8rVDJ1V1BSbW90aE4xUnZsbnNUOFVuVS9ZRmJWL3NWcjkzRUxycHF3TT0tLUh5aTBiY2VzT1A1NDRWdHg2L0FQT3c9PQ==--0e9064ebcb01bfebb9976a543500b0396c0bfcae%"><img src='https://www.browserstack.com/automate/badge.svg?badge_key=am8rVDJ1V1BSbW90aE4xUnZsbnNUOFVuVS9ZRmJWL3NWcjkzRUxycHF3TT0tLUh5aTBiY2VzT1A1NDRWdHg2L0FQT3c9PQ==--0e9064ebcb01bfebb9976a543500b0396c0bfcae%'/></a>
2018-07-23 11:58:20 +02:00
<a href="https://discord.gg/AwXRqPD"
><img alt="discord" src="https://img.shields.io/badge/Discord-%23questions%20%23general-blue.svg"/>
</a>
2018-05-29 22:43:53 +02:00
</div>
<div align="center">
2018-05-31 09:37:03 +02:00
<p align="center"><img src="https://github.com/verdaccio/verdaccio/blob/master/assets/gif/verdaccio_big_30.gif?raw=true"></p>
2018-05-29 22:43:53 +02:00
</div>
<h2 align="center">Install</h2>
Install with npm:
2018-05-29 22:43:53 +02:00
```bash
npm install --global verdaccio
```
2018-05-29 22:43:53 +02:00
Install with yarn:
2018-02-11 12:30:16 +01:00
2018-05-29 22:43:53 +02:00
```bash
yarn global add verdaccio
```
2018-05-29 22:43:53 +02:00
Install with pnpm:
2018-01-19 07:27:00 +01:00
2018-05-29 22:43:53 +02:00
```bash
pnpm i -g verdaccio
```
2018-01-18 06:55:17 +01:00
2017-07-16 09:21:10 +02:00
2018-05-29 22:43:53 +02:00
<h2 align="center">Introduction</h2>
2013-09-28 17:17:15 +02:00
2018-05-30 06:14:12 +02:00
Verdaccio 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 and Google Cloud Storage**.
2013-12-21 10:06:38 +01:00
### Use private packages
2013-09-28 17:48:05 +02: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
### Cache npmjs.org registry
2013-09-28 17:48:05 +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
2013-09-28 17:17:15 +02:00
### Override public packages
2014-08-28 21:40:14 +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.
2018-02-11 12:30:16 +01:00
See in detail each of these [use cases](https://github.com/verdaccio/verdaccio/tree/master/docs/use-cases.md).
2018-05-29 22:43:53 +02:00
<h2 align="center">Get Started</h2>
Run in your terminal
```bash
2018-10-21 17:39:13 +02:00
$ verdaccio
```
You would need set some npm configuration, this is optional.
2013-06-09 12:22:41 +02:00
```bash
$ npm set registry http://localhost:4873/
2013-09-28 17:17:15 +02:00
# if you use HTTPS, add an appropriate CA information
# ("null" means get CA list from OS)
2013-06-09 12:22:41 +02:00
$ npm set ca null
```
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-10-31 00:55:33 +01:00
> Warning: Verdaccio does not currently support PM2's cluster mode, running it with cluster mode may cause unknown behavior.
2018-05-29 22:43:53 +02:00
<h2 align="center">Publishing Private Packages</h2>
#### Create an user and log in
```bash
2018-10-21 17:39:13 +02:00
$ npm adduser --registry http://localhost:4873
```
For scoped packages, you can log in for a specific scope:
```bash
$ npm adduser --registry http://localhost:4873 --scope=@mycompany
```
#### Publish your package
```bash
2018-10-21 17:39:13 +02:00
$ npm publish --registry http://localhost:4873
```
This will prompt you for user credentials which will be saved on the `verdaccio` server.
2017-07-25 14:59:45 +02:00
2018-10-21 17:39:13 +02:00
If you are publishing a scoped package, the registry argument is optional
2018-05-29 22:43:53 +02:00
<h2 align="center"> Docker</h2>
2018-09-27 22:48:14 +02:00
Below are the most commonly needed informations,
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)
2018-10-21 17:39:13 +02:00
```bash
$ docker pull verdaccio/verdaccio
```
2018-05-29 22:43:53 +02:00
Available as [tags](https://hub.docker.com/r/verdaccio/verdaccio/tags/).
2018-10-21 17:39:13 +02:00
```bash
$ docker pull verdaccio/verdaccio:3.0.0
2018-05-29 22:43:53 +02:00
```
2017-05-14 16:15:04 +02:00
### Running verdaccio using Docker
To run the docker container:
2017-05-14 16:15:04 +02:00
```bash
2018-10-21 17:39:13 +02:00
$ docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio
2017-05-14 16:15:04 +02:00
```
Docker examples are available [in this repository](https://github.com/verdaccio/docker-examples).
2018-05-29 22:43:53 +02:00
<h2 align="center">Compatibility</h2>
2013-05-22 08:48:04 +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
### Basic features
2013-10-02 20:56:06 +02:00
2017-04-12 23:18:57 +02:00
- Installing packages (npm install, npm upgrade, etc.) - **supported**
- Publishing packages (npm publish) - **supported**
2013-10-02 20:56:06 +02:00
### Advanced package control
2013-10-02 20:56:06 +02:00
2017-04-12 23:18:57 +02:00
- Unpublishing packages (npm unpublish) - **supported**
2017-04-30 10:01:41 +02:00
- Tagging (npm tag) - **supported**
2018-05-29 22:43:53 +02:00
- Deprecation (npm deprecate) - not supported - *PR-welcome*
2013-10-02 20:56:06 +02:00
### User management
2013-10-02 20:56:06 +02:00
2017-04-12 23:18:57 +02:00
- Registering new users (npm adduser {newuser}) - **supported**
2018-05-29 22:43:53 +02:00
- Transferring ownership (npm owner add {user} {pkg}) - not supported, *PR-welcome*
2018-10-21 17:39:13 +02:00
### Miscellany
2013-10-02 20:56:06 +02:00
2017-04-12 23:18:57 +02:00
- Searching (npm search) - **supported** (cli / browser)
2017-07-25 14:59:45 +02:00
- Ping (npm ping) - **supported**
2018-05-29 22:43:53 +02:00
- Starring (npm star, npm unstar) - not supported, *PR-welcome*
2013-05-22 08:48:04 +02:00
### Security
- npm audit - **supported**
2018-05-29 22:43:53 +02:00
<h2 align="center">Contributors</h2>
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
2018-04-29 20:32:48 +02:00
<a href="../../graphs/contributors"><img src="https://opencollective.com/verdaccio/contributors.svg?width=890&button=false" /></a>
2018-05-29 22:43:53 +02:00
### Backers
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/verdaccio#backer)]
<a href="https://opencollective.com/verdaccio#backers" target="_blank"><img src="https://opencollective.com/verdaccio/backers.svg?width=890"></a>
2018-05-29 22:43:53 +02:00
### Sponsors
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)]
<a href="https://opencollective.com/verdaccio/sponsor/0/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/0/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/1/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/1/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/2/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/2/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/3/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/3/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/4/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/4/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/5/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/5/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/6/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/6/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/7/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/8/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/verdaccio/sponsor/9/website" target="_blank"><img src="https://opencollective.com/verdaccio/sponsor/9/avatar.svg"></a>
2018-05-29 22:43:53 +02:00
<h2 align="center"> FAQ / Contact / Troubleshoot</h2>
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.
* [Roadmap](https://github.com/verdaccio/verdaccio/wiki)
* [Most common questions](https://github.com/verdaccio/verdaccio/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3Aquestion%20)
* [Reporting a bug](https://github.com/verdaccio/verdaccio/blob/master/CONTRIBUTING.md#reporting-a-bug)
* [Running discussions](https://github.com/verdaccio/verdaccio/issues?q=is%3Aissue+is%3Aopen+label%3Adiscuss)
* [Chat Room](http://chat.verdaccio.org/)
2018-05-29 22:43:53 +02:00
* [Logos](https://github.com/verdaccio/verdaccio/tree/master/assets)
2018-05-29 22:43:53 +02:00
<h2 align="center">License</h2>
2018-05-29 23:03:51 +02:00
Verdaccio is [MIT licensed](https://github.com/verdaccio/verdaccio/blob/master/LICENSE)
The Verdaccio documentation and logos (e.g., .md, .png, .sketch) files in the /docs and /assets folder) is [Creative Commons licensed](https://github.com/verdaccio/verdaccio/blob/master/LICENSE-docs).