npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@beaker73/async-context

v0.1.2

Published

Provides a context over async function calls. Much like `AsyncLocalStorage` on node.js, but for browsers.

Downloads

12

Readme

AsyncContext

Provides a context over async function calls. Much like AsyncLocalStorage on node.js, but for browsers.

Important Warning

The way this is done is slightly hacky and might not work on all browsers. We generate a random id that is injected into the stack-trace by calling a function containing the id in a part of the name as a marker.

The implementation is dependent on the way the browser generates the stack traces and thus is not guaranteed to work as stack traces are not part of any standard.

Usage


// define some context that should be available anywhere
const context = { value: "banana" };

// call a function with the context.
// even after context switches 
const result = await callWithContext(context, async () => {
	
	// get the context
	const c1 = getContext();
	
	await someAsync();
	
	// stil get the same context
	const c2 = getContext();

	// maybe return a result
	return "coconut";

	async function someAsync() {
		await new Promise(resolve => setTimeout(resolve, 5000));
		
		// also the same context
		const c3 = getContext();
	}
})

Functions

callWithContext

Calls a function and set a context during the whole execution of that context. Even during async awaits with context switches. As soon as code continues after the await, the getContext will return the correct context again.

callWithContext<
	// type arguments
	Context = unknown, 
	Result = void
>(
	// arguments
	func: () => Promise<Result>
	context: Context
)
	// result
	: Promise<Result>;

type arguments

| name | default | restriction | description | |---------|---------|-------------|----------------------------------------------| | Context | unknown | - | The type of the Context | | Result | void | - | The result the called function will return |

arguments

| name | type |description | |---------|-----------------------|----------------------------------------------------------------------------------------------------| | func | () => Promise<Result> | A callback function to be executed. As long as this function is executing the context will be set. | | context | Context | The context to be set during the whole execution of the provided function. |

result

| type | description | |--------|------------------------------------------------| | Result | The result as returnd by the callback function |

getContext

Gets the context at the current execution point. If the code was not started via callWithContext the function throws.

getContext<
	// type arguments
	Context = unknown
>()
	// result
	: Context

type arguments

| name | default | restriction | description | |---------|---------|-------------|----------------------------------------------| | Context | unknown | - | (Optional) The type of the Context. This cannot be derived. You can provide it to avoid casting. But there is no guarantee that it is actually of this type. It is not possible to pass down a 'handle' or something else to ensure correct type infering as then you would not need context to begin with. |

result

| type | description | |--------|--------------------------------------------------------| | Result | The context object active at this code execution point |

throws

| type | description | |--------|--------------------------------------------------| | Error | Thrown when no execution context could be found |

tryGetContext

Tryies the context at the current execution point. If the code was not started via callWithContext the function returns undefined instead.

| name | default | restriction | description | |---------|---------|-------------|----------------------------------------------| | Context | unknown | - | (Optional) The type of the Context. This cannot be derived. You can provide it to avoid casting. But there is no guarantee that it is actually of this type. It is not possible to pass down a 'handle' or something else to ensure correct type infering as then you would not need context to begin with. |

result

| type | description | |--------|--------------------------------------------------------| | Result | The context object active at this code execution point or undefined if no execution context could be found |