2017-12-16 13:30:42 +01:00
---
id: installation
2018-02-16 19:32:53 +01:00
title: "Installation"
2017-12-16 13:30:42 +01:00
---
Verdaccio is a multiplatform web application, to install you need at least some prerequisites.
#### Prerequisites
2018-01-06 23:13:28 +01:00
1. Node higher than
2018-01-21 00:04:36 +01:00
- For version `verdaccio@2.x` we support from Node `v4.6.1` .
- For version `verdaccio@3.x` we support as minimum Node `6.12.0`
2. npm `>=3.x` or `yarn`
3. The web interface support browsers `Chrome, Firefox, Edge, and IE9`
2017-12-16 13:30:42 +01:00
## Installing the CLI
2018-01-21 00:04:36 +01:00
`verdaccio` must be install globaly using any of the most modern
2017-12-16 13:30:42 +01:00
Using `npm`
```bash
npm install -g verdaccio
```
or using `yarn`
```bash
yarn global add verdaccio
```
## Basic Usage
Once has been installed you only need to execute the CLI command.
```bash
$> verdaccio
2018-01-06 23:13:28 +01:00
warn --- config file - /home/.config/verdaccio/config.yaml
warn --- http address - http://localhost:5555/ - verdaccio/3.0.0
2017-12-16 13:30:42 +01:00
```
![](https://cdn-images-1.medium.com/max/720/1*jDHnZ7_68u5s1lFK2cygnA.gif)
For more information about CLI please [read the cli section ](cli.md ).
## Docker Image
`verdaccio` has a official docker image you can use, in the most of cases is good enough just the default configuration, for more information about how to install the official image [read the docker section ](docker.md ).