0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/website/translated_docs/es-ES/install.md

49 lines
1.3 KiB
Markdown
Raw Normal View History

2017-12-16 07:29:21 -05:00
---
id: installation
title: "Installation"
2017-12-16 07:29:21 -05:00
---
Verdaccio es una aplicación web multiplataforma. Para instalarlo, necesitas unos pocos prerrequisitos.
2017-12-16 07:29:21 -05:00
#### Prerrequisitos
2017-12-16 07:29:21 -05:00
1. Node mayor que
- En `verdaccio@2.x` Node `v4.6.1` es la versión mínima soportada.
- For version `verdaccio@latest` Node `6.12.0` is the minimum supported version.
2. npm `>=3.x` o `yarn`
3. La interfaz web soporta los exploradores `Chrome, Firefox, Edge, and IE9`.
2017-12-16 07:29:21 -05:00
## Instalando el CLI
2017-12-16 07:29:21 -05:00
`verdaccio` debe ser instalado globalmente usando uno de los siguientes métodos:
2017-12-16 07:29:21 -05:00
Usando `npm`
2017-12-16 07:29:21 -05:00
```bash
npm install -g verdaccio
```
o usando `yarn`
2017-12-16 07:29:21 -05:00
```bash
yarn global add verdaccio
```
![install verdaccio](/svg/install_verdaccio.gif)
## Uso Básico
2017-12-16 07:29:21 -05:00
Once it has been installed, you only need to execute the CLI command:
2017-12-16 07:29:21 -05:00
```bash
$> verdaccio
2018-01-06 17:12:52 -05:00
warn --- config file - /home/.config/verdaccio/config.yaml
warn --- http address - http://localhost:4873/ - verdaccio/3.0.1
2017-12-16 07:29:21 -05:00
```
![](https://cdn-images-1.medium.com/max/720/1*jDHnZ7_68u5s1lFK2cygnA.gif)
For more information about the CLI, please [read the cli section](cli.md).
2017-12-16 07:29:21 -05:00
## Imagen de Docker
2017-12-16 07:29:21 -05: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).