This commit is contained in:
Matteo Collina 2017-07-23 14:48:58 +02:00
Родитель 3e309d3add
Коммит 38f74f07f3
3 изменённых файлов: 45 добавлений и 0 удалений

0
.nojekyll Normal file
Просмотреть файл

22
_sidebar.md Normal file
Просмотреть файл

@ -0,0 +1,22 @@
- [Home](/)
- [Benchmarks](/#benchmarks)
- [Browser Support](/#pino-in-the-browser)
- [Caveats](/#caveats)
- [The Team](/#the-team)
- [API](/docs/API.md)
- [Constructor](/docs/API.md#constructor)
- [Pretty](/docs/API.md#pretty)
- [Logger](/docs/API.md#logger)
- [Metadata](/docs/API.md#metadata)
- [CLI](/docs/cli.md)
- [Extreme Mode](/docs/extreme.md)
- [Transports](/docs/transports.md)
- [HOWTOs](/docs/howtos.md)
- [Express](/docs/howtos.md#Express)
- [Hapi](/docs/howtos.md#Hapi)
- [Restify](/docs/howtos.md#Restify)
- [Koa](/docs/howtos.md#Koa)
- [debug](/docs/howtos.md#debug)
- [Log Rotation](/docs/howtos.md#rotate)
- [Multiple Files](/docs/howtos.md#multiple)
- [Redaction](/docs/howtos.md#redact)

23
index.html Normal file
Просмотреть файл

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pino - Super fast, all natural JSON logger for Node.js</title>
<meta name="description" content="Super fast, all natural JSON logger for Node.js">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
</body>
<script>
window.$docsify = {
name: 'pino',
loadSidebar: true,
repo: 'https://github.com/pinojs/pino',
auto2top: true
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</html>