Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

reqlogs

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reqlogs

A simple logger, which logs the request to server in form of tables, it helps to debug the connection with client and can also be used for metrics.

  • 1.0.7
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

REQLOGS

A library to log the HTTP requests coming to the server for debugging, testing and monitoring purposes.


It acts as a middleware and logs the request data in form of table in console and render it in form of bootstrap tables, everytime a request comes. This solves the problem of debugging by console logging request data manually everytime a route doesn't work.

Installation

This is mostly useful for debugging purposes, so to install it as a dev-dependency you can simply install the npm package with dev flag.

  npm install --save-dev reqlogs

How to use and configure

  const express = require('express')
  const app = express()
  const PORT = process.env.PORT || 8081
  
  // import the library
  const {RequestLogger} = require('reqlogs')
  
  // select the parameters you want to log from the HTTP request.
  const parameters = {
    time: true,
    method: true,
    path : true,
    query : true,
    body : true 
  }
  // an array of paths you want the logger to ignore
  const ignore_urls = ['/a', '/b']  
  
  // a boolean (optional) , for ordering of the data in table logs
  const showLatestFirst = true
  
  // create an object and pass the parameters
  const RL = new RequestLogger({ignore_urls, parameters, showLatestFirst})
  
  // essential middleware...
  app.use(express.json())
  app.use(express.urlencoded({extended:true}))
  .
  .
  .
  
  
  // put RL middlewares at the bottom just above the routes/api
  app.use(RL.Console())
  // specify the url for the webview
  const url = '/logs'
  app.use(RL.Webpage({url}))


 app.use(API)

  app.listen(PORT, () => {
      console.log(`Server started at port : ${PORT}`)
  })

Tip : This will work only if your server already has the required middlewares setup before the reqlogs middleware like cookies-parser for cookies and express.json() for body etc.

Working

This will log your request data in form of tables in console and will render a webview as well.

web-view

console-view

NPM GITHUB

Keywords

FAQs

Package last updated on 17 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc