Quick Start
Get up and running with Pinorama Studio in minutes.
Prerequisites
- Node.js version 20 or higher
- A terminal for running the CLI
Installation
Install Pinorama Studio globally:
sh
npm i -g pinorama-studiosh
pnpm i -g pinorama-studiosh
yarn global add pinorama-studioQuick Setup
Create a minimal Fastify application with Pinorama Studio for log viewing:
Create a new directory:
shmkdir pinorama-demo && cd pinorama-demoInstall Fastify:
shnpm add fastifyshpnpm add fastifyshyarn add fastifyCreate an
index.jsfile:javascriptconst fastify = require("fastify")({ logger: true // needed for piping logs to Pinorama }) fastify.get("/", async (request, reply) => { request.log.info("Pinorama is awesome!") return { hello: "world" } }) fastify.listen({ port: 3000 })Run your application and pipe the output to Pinorama Studio:
shnode index.js | pinorama --open
This starts your Fastify application, pipes its logs to Pinorama Studio, and opens the web interface in your default browser.
Next Steps
- Pinorama Studio — Keyboard shortcuts, Live Mode, Details panel, and all CLI options
- Pinorama Server — Run a standalone server with authentication and persistence
- Pinorama MCP — Connect AI assistants to your log database
- Presets — Customize schemas, columns, facets, and styles
- Persistence — Save logs to disk and restore on startup
