2017-12-16 13:25:59 +01:00
|
|
|
|
/**
|
|
|
|
|
* 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 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 (
|
|
|
|
|
<div className="pluginWrapper buttonWrapper">
|
|
|
|
|
<a className="button" href={this.props.href} target={this.props.target}>
|
|
|
|
|
{this.props.children}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Button.defaultProps = {
|
|
|
|
|
target: '_self',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class HomeSplash extends React.Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="homeContainer">
|
|
|
|
|
<div className="homeSplashFade">
|
|
|
|
|
<div className="wrapper homeWrapper">
|
|
|
|
|
<div className="inner">
|
|
|
|
|
<h2 className="projectTitle">
|
|
|
|
|
<img title={siteConfig.title} src={siteConfig.baseUrl + 'img/verdaccio@2x.png'} />
|
|
|
|
|
|
|
|
|
|
<small>{siteConfig.tagline}</small>
|
|
|
|
|
</h2>
|
|
|
|
|
<div className="section promoSection">
|
|
|
|
|
<div className="promoRow">
|
|
|
|
|
<div className="pluginRowBlock">
|
|
|
|
|
<Button href="https://github.com/verdaccio">Github</Button>
|
|
|
|
|
<Button
|
|
|
|
|
href={
|
|
|
|
|
siteConfig.baseUrl +
|
|
|
|
|
'docs/' +
|
|
|
|
|
this.props.language +
|
2018-01-06 23:04:02 +01:00
|
|
|
|
'/installation.html'
|
2017-12-16 13:25:59 +01:00
|
|
|
|
}>
|
|
|
|
|
Documentation
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
href={
|
|
|
|
|
siteConfig.baseUrl +
|
|
|
|
|
'docs/' +
|
|
|
|
|
this.props.language +
|
2018-01-06 23:04:02 +01:00
|
|
|
|
'/contributing.html'
|
2017-12-16 13:25:59 +01:00
|
|
|
|
}>
|
|
|
|
|
Contribute
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Index extends React.Component {
|
|
|
|
|
render() {
|
|
|
|
|
let language = this.props.language || 'en';
|
|
|
|
|
const showcase = siteConfig.users
|
|
|
|
|
.filter(user => {
|
|
|
|
|
return user.pinned;
|
|
|
|
|
})
|
|
|
|
|
.map(user => {
|
|
|
|
|
return (
|
|
|
|
|
<a href={user.infoLink}>
|
|
|
|
|
<img src={user.image} title={user.caption} />
|
|
|
|
|
</a>
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<HomeSplash language={language} />
|
|
|
|
|
<div className="mainContainer">
|
|
|
|
|
<Container padding={['bottom', 'top']}>
|
|
|
|
|
<GridBlock
|
|
|
|
|
align="center"
|
|
|
|
|
contents={[
|
|
|
|
|
{
|
2018-01-06 23:04:02 +01:00
|
|
|
|
content: '```bash\n' +
|
|
|
|
|
'$> npm install --global verdaccio \n' +
|
|
|
|
|
'$> yarn global add verdaccio\n' +
|
|
|
|
|
'```',
|
|
|
|
|
title: 'Easy to Install',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2018-01-06 23:04:02 +01:00
|
|
|
|
content: '```bash\n' +
|
|
|
|
|
'$> npm set registry http://localhost:4873 \n' +
|
|
|
|
|
'$> npm adduser --registry http://localhost:4873\n' +
|
|
|
|
|
'```',
|
|
|
|
|
title: 'Easy to Set Up',
|
|
|
|
|
}
|
2017-12-16 13:25:59 +01:00
|
|
|
|
]}
|
|
|
|
|
layout="fourColumn"
|
|
|
|
|
/>
|
|
|
|
|
</Container>
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
className="productShowcaseSection paddingBottom"
|
|
|
|
|
style={{textAlign: 'center'}}>
|
2018-01-06 23:04:02 +01:00
|
|
|
|
<h2>Easy to Use</h2>
|
|
|
|
|
<MarkdownBlock>
|
|
|
|
|
```bash

|
|
|
|
|
$> verdaccio 

|
|
|
|
|
warn --- config file - /home/.config/verdaccio/config.yaml 

|
|
|
|
|
warn --- http address - http://localhost:4873/ - verdaccio/3.0.0

|
|
|
|
|
```
|
|
|
|
|
</MarkdownBlock>
|
|
|
|
|
<h2>
|
|
|
|
|
That’s it ! Enjoy your private package manager.
|
|
|
|
|
</h2>
|
2017-12-16 13:25:59 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Container padding={['bottom', 'top']} background="light">
|
|
|
|
|
<GridBlock
|
|
|
|
|
contents={[
|
|
|
|
|
{
|
2018-01-20 23:00:45 +01:00
|
|
|
|
content: '**npm**, **yarn** and **pnpm** are part of any development workflow,' +
|
2018-01-06 23:04:02 +01:00
|
|
|
|
' we try to catch up with the latest updates.',
|
2018-01-20 23:00:45 +01:00
|
|
|
|
image: siteConfig.baseUrl + 'img/package_managers_grey.png',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
imageAlign: 'right',
|
2018-01-06 23:04:02 +01:00
|
|
|
|
title: 'The most popular npm clients are supported',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</Container>
|
|
|
|
|
|
|
|
|
|
<Container padding={['bottom', 'top']} id="try">
|
|
|
|
|
<GridBlock
|
|
|
|
|
contents={[
|
|
|
|
|
{
|
2018-01-06 23:04:02 +01:00
|
|
|
|
content: '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',
|
2018-01-20 23:00:45 +01:00
|
|
|
|
image: siteConfig.baseUrl + 'img/devops_support_grey.png',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
imageAlign: 'left',
|
2018-01-06 23:04:02 +01:00
|
|
|
|
title: 'Making the DevOps work easy',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</Container>
|
|
|
|
|
|
|
|
|
|
<Container padding={['bottom', 'top']} background="dark">
|
|
|
|
|
<GridBlock
|
|
|
|
|
contents={[
|
|
|
|
|
{
|
|
|
|
|
content:
|
2018-01-06 23:04:02 +01:00
|
|
|
|
'Verdaccio is plugin based, authentication, middleware and storage support. ' +
|
|
|
|
|
'Just pick one or create your custom one.',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
image: siteConfig.baseUrl + 'img/verdaccio-tiny@3x.png',
|
|
|
|
|
imageAlign: 'right',
|
2018-01-06 23:04:02 +01:00
|
|
|
|
title: 'Plugin Support',
|
2017-12-16 13:25:59 +01:00
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</Container>
|
|
|
|
|
|
|
|
|
|
<div className="productShowcaseSection paddingBottom">
|
|
|
|
|
<h2>{"Who's Using This?"}</h2>
|
|
|
|
|
<p>This project is used by all these people</p>
|
|
|
|
|
<div className="logos">{showcase}</div>
|
|
|
|
|
<div className="more-users">
|
|
|
|
|
<a
|
|
|
|
|
className="button"
|
|
|
|
|
href={
|
|
|
|
|
siteConfig.baseUrl + this.props.language + '/' + 'users.html'
|
|
|
|
|
}>
|
|
|
|
|
More {siteConfig.title} Users
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = Index;
|