javascript

Is Your Express App Ready for Pino, the Ferrari of Logging?

Embrace the Speed and Precision of Pino for Seamless Express Logging

Is Your Express App Ready for Pino, the Ferrari of Logging?

When diving into logging HTTP requests in Express applications, many developers lean towards Pino for its impressive speed and rich feature set. Pino is like the Ferrari of logging tools in the Node.js ecosystem – it’s fast, sleek, and reliable.

Why Go with Pino?

What sets Pino apart is its blazing speed. Time is crucial, especially for applications where performance is non-negotiable. Pino also boasts versatility, making it a great companion for various Node.js frameworks such as Express and Fastify.

Getting Started with Pino and Express

Let’s break it down on how you can set up Pino with an Express application.

First off, create a new directory for your project, then kick things off by initializing a new Node.js project.

mkdir pino-logging && cd pino-logging
npm init -y

Next, you’ll need to install Pino and pino-http, the latter being essential for HTTP request and response logging.

npm install pino pino-http --save

Now, you can roll up your sleeves and create your Express server. Here’s how you can integrate Pino logging into it:

const express = require('express');
const pino = require('pino');
const pinoHttp = require('pino-http');

const logger = pino();
const httpLogger = pinoHttp({ logger });

const app = express();

// Use Pino HTTP middleware
app.use(httpLogger);

app.get('/', (req, res) => {
  req.log.info('Home route accessed');
  res.send('Hello, World!');
});

app.get('/user/:id', (req, res) => {
  const userId = req.params.id;
  req.log.info({ userId }, 'User route accessed');
  res.send(`User ID: ${userId}`);
});

// Error handling middleware
app.use((err, req, res, next) => {
  req.log.error({ err }, 'Unhandled error');
  res.status(500).send('Something went wrong');
});

const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
  logger.info(`Server is running on port ${PORT}`);
});

Logging HTTP Requests and Responses

When you make Pino log HTTP requests and responses, it gets pretty detailed – capturing HTTP methods, URLs, status codes, and response times.

Here’s what happens when a request hits your app. If someone does a GET request to the root URL, Pino generates a log entry that captures all these details.

{
  "level": 30,
  "time": 1720120558325,
  "pid": 18553,
  "hostname": "Anubhavs-MacBook-Air.local",
  "req": {
    "id": "req-1",
    "method": "GET",
    "url": "/",
    "headers": {
      "host": "localhost:3000",
      "connection": "keep-alive",
      // ...headers truncated for brevity
    },
    "remoteAddress": "::1",
    "remotePort": 64853
  },
  "res": {
    "statusCode": 200,
    "headers": {
      "content-type": "text/html; charset=utf-8",
      "content-length": "13",
      // ...headers truncated for brevity
    },
    "responseTime": 1.1204520016908646
  },
  "msg": "request completed"
}

You can even customize these logs to include any additional info you need, like logging user details when specific routes are accessed.

app.get('/user/:id', (req, res) => {
  const userId = req.params.id;
  req.log.info({ userId }, 'User route accessed');
  res.send(`User ID: ${userId}`);
});

Tailoring Pino Logging

Pino’s customization options allow you to mold the logging to fit your needs perfectly.

Log Levels: Adjust the verbosity by setting different log levels. For instance, setting the log level to info for production and debug during development.

const logger = pino({ level: 'info' });

Custom Serializers: Craft your own serializers to format log data precisely as you need it. This is useful for refining how request and response logs are shown.

const httpLogger = pinoHttp({
  logger,
  serializers: {
    req: (req) => ({ method: req.method, url: req.url }),
    res: (res) => ({ statusCode: res.statusCode }),
  },
});

Pretty Printing: If you’re all about readability, integrate pino-pretty for logs that are easy on the eyes.

const pretty = require('pino-pretty');
const logger = pino(pretty());

Performance and Benchmarks

Pino’s high performance is no joke. It’s built to handle high-traffic applications efficiently. Radiating speed and capability, Pino consistently outshines other popular logging libraries.

Here’s a snapshot of how Pino ranks in request rates compared to others:

express-bunyan-logger: 2702 req/sec
express-winston: 5953 req/sec
morgan: 8570 req/sec
pino-http: 9807 req/sec

Conclusion

Bringing Pino into your Express application is not only easy but can turbocharge how you monitor and debug. Pino’s high performance, customizable features, and seamless integration with Express make it a fantastic tool for any Node.js developer looking to up their logging game. With the guide laid out above, you’re set to create a solid logging system that keeps you on top of your application’s heartbeat.

And there you have it – a robust, efficient logging setup, ready to go. Time to code, log, and keep your app running smooth as butter. Cheers!

Keywords: Pino logging, express applications, Node.js logging tools, pino-http setup, high-performance logging, custom serializers, log levels in Node.js, integrating Pino, monitoring Express apps, pino-pretty readability



Similar Posts
Blog Image
Unleashing Node.js Power: Building Robust Data Pipelines with Kafka and RabbitMQ

Node.js, Kafka, and RabbitMQ enable efficient data pipelines. Kafka handles high-volume streams, while RabbitMQ offers complex routing. Combine them for robust systems. Use streams for processing and implement monitoring for optimal performance.

Blog Image
Is Your Node.js Server Guarded by the Ultimate Traffic Cop?

Guarding Your Node.js Castle with Express API Rate Limiting

Blog Image
Can Compression Give Your Web App a Turbo Boost?

Navigating Web Optimization: Embracing Compression Middleware for Speed and Efficiency

Blog Image
**7 Essential JavaScript API Integration Patterns for Bulletproof Web Applications**

Master JavaScript API integration with 7 essential patterns: RESTful consumption, GraphQL, WebSockets, caching, rate limiting, authentication & error handling. Build resilient apps that handle network issues gracefully. Learn proven techniques now.

Blog Image
Master JavaScript's Observable Pattern: Boost Your Reactive Programming Skills Now

JavaScript's Observable pattern revolutionizes reactive programming, handling data streams that change over time. It's ideal for real-time updates, event handling, and complex data transformations. Observables act as data pipelines, working with streams of information that emit multiple values over time. This approach excels in managing user interactions, API calls, and asynchronous data arrival scenarios.

Blog Image
What’s the Secret Sauce to Mastering TypeScript Interfaces?

Blueprints of Reliability: Mastering TypeScript Interfaces for Cleaner, More Dependable Code