CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
index.html56 linesDownload Raw Back to pino
1<!DOCTYPE html>2<html lang="en">3<head>4  <meta charset="UTF-8">5  <title>Pino - Super fast, all natural JSON logger for Node.js</title>6  <meta name="description" content="Super fast, all natural JSON logger for Node.js">7  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">8  <link rel="stylesheet" href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css">9  <style>10    :root {11      --base-font-size: 16px;12      --theme-color: rgb(104, 118, 52);13      --link-color:  rgb(104, 118, 52);14      --link-color--hover: rgb(137, 152, 100);15      --sidebar-name-margin: 0;16      --sidebar-name-padding: 0;17      --code-font-size: .9em;18    }19    .sidebar > h1 {20      margin-bottom: -.75em;21      margin-top: .75em;22    }23    .sidebar > h1 img {24      height: 4em;25    }26    .markdown-section a code {27      color: var(--link-color)!important;28    }29    .markdown-section code:not([class*="lang-"]):not([class*="language-"]) {30      white-space: unset31    }32  </style>33  <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">34  <link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">35</head>36<body>37  <div id="app"></div>38</body>39<script>40  window.$docsify = {41    name: 'pino',42    logo: './pino-tree.png',43    loadSidebar: 'docsify/sidebar.md',44    repo: 'https://github.com/pinojs/pino',45    auto2top: true,46    ga: 'UA-103155139-1'47  }48</script>49<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>50<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>51<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>52<!-- To enable syntax highlighting on TypeScript codes: -->53<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>54 55</html>56