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

flight-with-resources

v3.0.0

Published

A Flight mixin for sharing named resources between components.

Downloads

736

Readme

flight-with-resources

Build Status

A Flight mixin for sharing named resources between components. A component can provide a resource into a central registry which other components can subsequently request. On component teardown any provided resources are removed.

Installation

npm install --save flight-with-resources

Example

Here's an example of two component definitions that use withResources to share appManifest data.

function providingComponent() {
    this.after('initialize', function () {
        this.provideResource('appManifest', {
            versionNo: '1.0.1',
            buildNo: '1234',
            url: 'https://tweetdeck.twitter.com'
        });
    });
}

function requestingComponent() {
    this.after('initialize', function () {
        var versionNo = this.requestResource('appManifest').versionNo;
    });
}

API

provideResource

provideResource, takes as string that uniquely identifies the resource being provided, and then either the resource itself or a 'provider function' that, when called, returns the resource:

this.provideResource('version', '1.2.3');

this.provideResource('config', {
    ponies: true,
    kittens: false
});

this.provideResource('kitten', function () {
    return {
        name: 'Fluffy',
        coat: 'Ginger',
        disposition: 'Misunderstood'
    };
});

When a resource is requested, the request may also pass configuration data which will be passed to the providing function:

this.provideResource('custom-kitten', function (config) {
    return {
        name: config.name || 'Fluffy',
        coat: config.coat || 'Ginger',
        disposition: config.disposition || 'Misunderstood'
    };
});

this.requestResource('custom-kitten', {
    name: 'Jasper',
    coat: 'Black'
});

There can only be one resource for any given name, and first-registration wins.

requestResource

requestResource takes the name of the resource to be requested and (optional) configuration data to be passed to the providing function, and returns the requested resource.

If the resource has not been registered, requestResource will throw.

var fluffyKitten = this.requestResource('kitten'); var fluffyKitten = this.requestResource('custom-kitten', { name: 'Tibbles', coat: 'Tortoiseshell' });

removeResource

removeResource takes the name of a resource to be removed and unregisters it so that futher requests will throw.

Development

To develop this module, clone the repository and run:

$ npm install && npm test

If the tests pass, you have a working environment. You shouldn't need any external dependencies.

Contributing to this project

Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.