🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

async-execution-context

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-execution-context

An execution context that persists across async tasks

0.0.2
Source
npm
Version published
Weekly downloads
7
Maintainers
1
Weekly downloads
 
Created
Source

async-execution-context

An execution context that persists across async tasks

Example

const { ctx } = require('async-execution-context')

(async () => {

  ctx.prop1 = 10

  await Promise.resolve().then(() => {
    ctx.prop2 = 20

    console.log(ctx.prop1) // 10
  })

  console.log(ctx.prop1) // 10
  console.log(ctx.prop2) // undefined
})()

Express application:

// after authentication
app.use((req, res) => {
  ctx.user = req.user
})

// some API endpoint
app.get('/pizza', async (req, res) => {
  const pizza = await getPizza()

  return res.status(200).send(pizza)
})

// get-pizza.js
const { ctx } = require('async-execution-context')

async function getPizza() {
  const pizza = await getPizzaFromDB()

  console.log(`User ${ctx.user.name} wants a slice of pizza!`)

  return pizza
}

FAQs

Package last updated on 26 Nov 2017

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