/** * Copyright (c) 2017-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const React = require('react'); const CompLibrary = require('../../core/CompLibrary.js'); const translate = require("../../server/translate.js").translate; const translation = require('../../server/translation.js'); const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */ const Container = CompLibrary.Container; const GridBlock = CompLibrary.GridBlock; const siteConfig = require(process.cwd() + '/siteConfig.js'); class Button extends React.Component { render() { return (
{this.props.children}
); } } Button.defaultProps = { target: '_self', }; class HomeSplash extends React.Component { render() { return (

{ translation[this.props.language]['localized-strings'] .tagline }

Star
); } } class Index extends React.Component { render() { let language = this.props.language || 'en'; const showcase = siteConfig.users .filter(user => { return user.pinned; }) .map(user => { return ( ); }); return (
npm install --global verdaccio \n' + '$> yarn global add verdaccio\n' + '```', title: Easy to Install, }, { content: '```bash\n' + '$> npm set registry http://localhost:4873 \n' + '$> npm adduser --registry http://localhost:4873\n' + '```', title: Easy to Set Up, } ]} layout="fourColumn" />

Easy to Use

```bash
 $> verdaccio 
 warn --- config file - /home/.config/verdaccio/config.yaml 
 warn --- http address - http://localhost:4873/ - verdaccio/3.0.0
 ```

That’s it ! Enjoy your private package manager.

**npm**, **yarn** and **pnpm** are part of any development workflow we try to catch up with the latest updates., image: siteConfig.baseUrl + 'img/package_managers_grey.png', imageAlign: 'right', title: The most popular npm clients are supported, }, ]} /> We have an official **Docker** image ready to use + '
\n' + '```bash\n' + 'docker pull verdaccio/verdaccio\n' + '```' + '\n' + and **Kubernetes Helm** support for easy deployment + '\n '+ '```bash\n' + 'helm install --name npm stable/verdaccio\n' + '```\n', image: siteConfig.baseUrl + 'img/devops_support_grey.png', imageAlign: 'left', title: Making the DevOps work easy, }, ]} /> Verdaccio is plugin based, authentication, middleware and storage support. Just pick one or create your custom one., image: siteConfig.baseUrl + 'img/verdaccio-tiny@3x.png', imageAlign: 'right', title: Plugin Support, }, ]} />

Who's Using This?

This project is used by all these people

{showcase}
More {siteConfig.title} Users
); } } module.exports = Index;