1.0.7 • Published 2 years ago

tranquilo v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Tranquilo - Express.js HTTP Middleware Logger

npm GitHub portfolio

Welcome to Tranquilo, the Middleware Logger for Express.js, a powerful tool to streamline and enhance the logging of HTTP requests and responses in your Express.js applications.

Logging is an essential aspect of understanding your application's behavior, diagnosing issues, and monitoring performance. Our middleware logger offers a user-friendly solution that allows you to easily track request and response details, response time, and status codes.

Table of Contents

Installation

Install Tranquilo with npm

  npm install tranquilo

Usage

Integrate Tranquilo into your Express.js application:

const express = require('express');
const tranquilo = require('tranquilo');

const app = express();

app.use(tranquilo());

app.get('/', (req, res) => {
  res.send('Hello, World!');
});

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

Custom Configuration

Tranquilo supports various format strings for customizing the logged output. You can specify a format string when initializing the middleware. Available format strings include:

  • America: A custom format for American-style logging.

  • Dev: Development-friendly format with colored status codes.

  • Tiny: A minimal format with essential request and response details.

Example of using a custom format:

app.use(tranquilo('america'));

Features

  • Effortless Logging: Streamline the process of logging HTTP requests and responses in your Express.js application with minimal setup.
  • Detailed Insights: Gain in-depth insights into request methods, URLs, status codes, response times, and content size for each API call.
  • Custom Configuration: Tailor the logger to your needs with customizable options to log specific information and control the verbosity of logs.
  • Seamless Integration: Easily integrate the middleware logger into your existing Express.js projects, improving your debugging and monitoring capabilities instantly.

Contributing

We welcome contributions from the open-source community. If you have ideas, bug reports, or feature requests, please open an issue on the GitHub repository.

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago