mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-20 22:52:46 -05:00
chore: improve docs
This commit is contained in:
parent
2cc65d2503
commit
49b3120ded
2 changed files with 18 additions and 7 deletions
|
@ -92,8 +92,11 @@ Via CLI:
|
||||||
* [aws-sdk cli v3](https://github.com/aws/aws-sdk-js-v3) *(+1k ⭐️)*
|
* [aws-sdk cli v3](https://github.com/aws/aws-sdk-js-v3) *(+1k ⭐️)*
|
||||||
* [angular-eslint](https://github.com/angular-eslint/angular-eslint) *(+1k ⭐️)*
|
* [angular-eslint](https://github.com/angular-eslint/angular-eslint) *(+1k ⭐️)*
|
||||||
|
|
||||||
|
## Example repositories
|
||||||
|
|
||||||
|
- [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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ id: installation
|
||||||
title: "Installation"
|
title: "Installation"
|
||||||
---
|
---
|
||||||
|
|
||||||
Verdaccio is a multiplatform web application. To install it, you need a few basic prerequisites.
|
Verdaccio is a Node.js private and proxy registry. To install it, you need a few basic prerequisites.
|
||||||
|
|
||||||
## Prerequisites {#prerequisites}
|
## Prerequisites {#prerequisites}
|
||||||
|
|
||||||
|
@ -23,9 +23,7 @@ Are you still using **Verdaccio 4**?. Check the [migration guide](https://verdac
|
||||||
|
|
||||||
Learn the basics before getting started, how to install, where is the location of the configuration file and more.
|
Learn the basics before getting started, how to install, where is the location of the configuration file and more.
|
||||||
|
|
||||||
[![logo](https://cdn.verdaccio.dev/website/watch-us.png)](https://www.youtube.com/channel/UC5i20v6o7lSjXzAHOvatt0w)
|
<iframe width="560" height="415" src="https://www.youtube.com/embed/P_hxy7W-IL4?enablejsapi=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||||
|
|
||||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/P_hxy7W-IL4?enablejsapi=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
|
||||||
|
|
||||||
## Installing the CLI {#installing-the-cli}
|
## Installing the CLI {#installing-the-cli}
|
||||||
|
|
||||||
|
@ -93,6 +91,8 @@ Or a `publishConfig` in your `package.json`
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For alternative configurations, please read the [Using a privare registry](cli-registry.md) section.
|
||||||
|
|
||||||
## Create Your Own Private NPM Package Tutorial {#create-your-own-private-npm-package-tutorial}
|
## Create Your Own Private NPM Package Tutorial {#create-your-own-private-npm-package-tutorial}
|
||||||
|
|
||||||
If you'd like a broader explanation, don't miss the tutorial created by [thedevlife](https://mybiolink.co/thedevlife) on how to Create Your Own Private NPM Package using Verdaccio.
|
If you'd like a broader explanation, don't miss the tutorial created by [thedevlife](https://mybiolink.co/thedevlife) on how to Create Your Own Private NPM Package using Verdaccio.
|
||||||
|
@ -105,7 +105,15 @@ If you'd like a broader explanation, don't miss the tutorial created by [thedevl
|
||||||
docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio
|
docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio
|
||||||
```
|
```
|
||||||
|
|
||||||
`Verdaccio` has an official docker image you can use, and in most cases, the default configuration is good enough. For more information about how to install the official image, [read the docker section](docker.md).
|
`Verdaccio` has an official docker image you can use, and in most cases, the default configuration is good enough. For more information about how to install the official image, [read the docker section](docker.md), furthermore you can learn more about combining Docker images in our [docker-examples](https://github.com/verdaccio/verdaccio/tree/master/docker-examples) repository.
|
||||||
|
|
||||||
|
## Helm Chart {#helm-chart}
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ helm repo add verdaccio https://charts.verdaccio.org
|
||||||
|
$ helm repo update
|
||||||
|
$ helm install verdaccio/verdaccio
|
||||||
|
```
|
||||||
|
|
||||||
## Cloudron {#cloudron}
|
## Cloudron {#cloudron}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue