2017-12-16 13:29:21 +01:00
---
id: installation
2018-02-16 19:32:53 +01:00
title: "Installation"
2017-12-16 13:29:21 +01:00
---
2018-03-16 07:08:06 +01:00
Verdaccio es una aplicación web multiplataforma. Para instalarlo, necesitas unos pocos prerrequisitos.
2017-12-16 13:29:21 +01:00
2018-01-23 08:59:05 +01:00
#### Prerrequisitos
2017-12-16 13:29:21 +01:00
2018-01-23 08:59:05 +01:00
1. Node mayor que
2018-03-16 07:08:06 +01:00
- En `verdaccio@2.x` Node `v4.6.1` es la versión mínima soportada.
2018-04-24 21:52:30 +02:00
- For version `verdaccio@beta` Node `6.12.0` is the minimum supported version.
2018-01-23 08:59:05 +01:00
2. npm `>=3.x` o `yarn`
2018-03-16 07:08:06 +01:00
3. La interfaz web soporta los exploradores `Chrome, Firefox, Edge, and IE9` .
2017-12-16 13:29:21 +01:00
2018-01-23 08:59:05 +01:00
## Instalando el CLI
2017-12-16 13:29:21 +01:00
2018-03-16 07:08:06 +01:00
`verdaccio` debe ser instalado globalmente usando uno de los siguientes métodos:
2017-12-16 13:29:21 +01:00
2018-01-23 08:59:05 +01:00
Usando `npm`
2017-12-16 13:29:21 +01:00
```bash
npm install -g verdaccio
```
2018-01-23 08:59:05 +01:00
o usando `yarn`
2017-12-16 13:29:21 +01:00
```bash
yarn global add verdaccio
```
2018-04-24 21:52:30 +02:00
### Beta
⚠️⚠️ **Help us to test the version 3.x in order to release a stable version soon. Remember, to do never test with your original storage folder, do always a backup** ⚠️⚠️
If you are an adventurous developer you can use and install the latest beta version, this is a non stable version, I'd recommend only use for testing purporses.
```bash
$ npm install -g verdaccio@beta
```
2018-01-23 08:59:05 +01:00
## Uso Básico
2017-12-16 13:29:21 +01:00
2018-04-24 21:52:30 +02:00
Once it has been installed, you only need to execute the CLI command:
2017-12-16 13:29:21 +01:00
```bash
$> verdaccio
2018-01-06 23:12:52 +01:00
warn --- config file - /home/.config/verdaccio/config.yaml
2018-04-24 21:52:30 +02:00
warn --- http address - http://localhost:4873/ - verdaccio/2.7.4
2017-12-16 13:29:21 +01:00
```
![](https://cdn-images-1.medium.com/max/720/1*jDHnZ7_68u5s1lFK2cygnA.gif)
2018-04-24 21:52:30 +02:00
For more information about the CLI, please [read the cli section ](cli.md ).
2017-12-16 13:29:21 +01:00
2018-01-23 08:59:05 +01:00
## Imagen de Docker
2017-12-16 13:29:21 +01:00
2018-04-24 21:52:30 +02:00
`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 ).