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

@aliksend/context

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aliksend/context

Async storage for context

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

context

Can be used to track the context of current request.

import express from 'express'
import { Context } from '@aliksend/context'
import pino from 'pino'

const prettyLogs = process.env.PRETTY_LOGS === 'true'
const logLevel = process.env.LOG_LEVEL

Context.init(pino({
  formatters: {
    level: (label) => ({ level: label }),
    bindings: () => ({}),
  },
  transport: prettyLogs
    ? {
        target: 'pino-pretty',
        options: {
          ignore: 'hostname,requestId,contextId',
        },
      }
    : undefined,
  level: logLevel,
}))

const app = express()

app.use((req, res, next) => {
  const context = new Context('http request', { requestId: req.header('x-request-id') })
  context.logInfo('request', { method: req.method, url: req.url })

  if (req.header.authorization != null) {
    context.setAuth({
      // TODO
      sessionId: req.header.authorization,
      userId: req.header.authorization,
      permissions: []
    })
  }

  let send = res.send
  res.send = (body: any) => {
    context.logInfo('response', { status: res.statusCode, body })
    res.send = send
    send(body)
  }

  context.wrap(() => {
    next()
  }, false)
})

app.get('/ping', (req, res) => {
  Context.current().logInfo('ping called')
  res.send('pong')
})

Keywords

FAQs

Package last updated on 12 Feb 2024

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