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

adonis-current-context

v0.0.5

Published

Context provider for the Adonis framework based on async_hooks

Downloads

4

Readme

Context Provider for the Adonis Framework

A context provider for Adonis based on async_hooks used to provide current HTTP and/or websocket context for services.

Installation

adonis install adonis-current-context

After installing the package, make sure to follow the directions in instructions.md on how to set up the provider.

Usage

Request Context

Be default, the provider will ensure that each HTTP request is executed in a unique context. Getting an instance of Context anywhere within the request lifecyle will return an current request context object.

Example

class SomeService {
  static get inject () {
    return ['CurrentContext'];
  }

  constructor (context) {
    this.currentCtx = context;
  }

  async someMethod() {
    const { someKey } = this.currentCtx;

    return someKey;
  }
}

class SomeMiddleware {
  async handle (context, next) {
    context.someKey = 'someValue';

    await next();
  }
}

class SomeController {
  static get inject() {
    return ['SomeService'];
  }

  constructor(service) {
    this.service = service;
  }

  async someAction() {
    const someKey = await this.service.someMethod();

    return { someKey };
  }
}

const namedMiddleware = {
  someMiddleware: 'App/Http/Middleware/SomeMiddleware'
};

Route
  .get('/some/action', 'SomeController.someAction')
  .middleware(['someMiddleware']);
> curl http://localhost:3333/some/action
HTTP/1.1 200 OK
Content-Type: application/json; charset: UTF-8
{"someKey": "someValue"}

Default Context

A default context exists that will be used whenever Context is resolved outside of a current context. This makes it easy to write code that works with or without context. By default the store is empty, but it can be initialized with some data in bootstraping hooks, or a service provider's boot method.

const manager = use('Context/Manager');

manager.default = {foo : 'somedefaultvalue'};

// or
const currentCtx = use('CurrentContext');

currentCtx.setDefault({foo : 'somedefaultvalue'});

Disclaimers

Using context may not be right for all projects. There are a few things you should be aware of before using it.

Pre-release

This package has not been tested extensively yet. Make sure you test thoroughly before deploying it in a production application. If you try it out, I would appreciate feedback.

async_hooks API stability

This package is based on the Node.js async_hooks API. It is currently listed as Stability: 1 - Experimental. With that being said, it has been in the works for a long time. I would be surprised to see a lot of change.

The async_hooks module provides an API to register callbacks tracking the lifetime of asynchronous resources created inside a Node.js application.

Performance

I have not run any real world benchmarks yet, but it is expected that there will be some performace cost of tracking context with async_hooks. The performance of async_hooks and ways that it can be improved are currently being discussed (see https://github.com/nodejs/benchmarking/issues/181).

License

Copyright 2018 Brent Burgoyne, Copyright 2018 Mobilunity

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.