mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
29 lines
520 B
Handlebars
29 lines
520 B
Handlebars
<!doctype html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ name }}</title>
|
|
</head>
|
|
<body>
|
|
<h1><a href='/'>{{ name }}</a></h1>
|
|
|
|
<form>
|
|
<input type='search' name='q' />
|
|
<button>Search</button>
|
|
</form>
|
|
|
|
<h2>Setup:</h2>
|
|
<code>
|
|
npm set registry {{ baseUrl }}<br>
|
|
npm adduser --registry {{ baseUrl }}
|
|
</code>
|
|
|
|
{{#each locals}}
|
|
<article>
|
|
<h2>{{ name }} <small>v{{ version }}</small></h2>
|
|
<div>By: {{ _npmUser.name }}</div>
|
|
</article>
|
|
{{/each}}
|
|
</body>
|
|
</html>
|