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 🙏

© 2026 – Pkg Stats / Ryan Hefner

injf

v1.0.0

Published

Lightweight dependency injection framework

Readme

Introduction

injf is a minimal, unassuming, dependency injection container focused on functional patterns rather than OOP ones. It features lazy resolution of dependencies via promises and is designed to inject parameters into your functions based on their name. You can inject everything you like but injf is designed with a stateless functional-style mindset.

Installation

injf can be installed via npm:

$ npm install injf

Dependencies

infj requires Babel 7 in order to run. Add these lines to your .babelrc:

{
  "presets": ["@babel/preset-env"],
  "plugins": ["@babel/plugin-transform-runtime"]
}

Examples

Let's say you have a sum function and you want to evaluate it using injected x and y values.

function sum(x, y) {
  return x + y;
}

You must have (anywhere) a section that is executed that registers x and y with the container.

injf.register('x', 3);
injf.register('x', 2);
injf.register('y', 1);

Note that you can register the same dependency multiple times. The last value will be used.

const result = await injf.resolve(sum);
expect(result).toEqual(3);

Due to lazy loading, you must use await or some other Promise-resolution method in order to obtain the actual result.

You can combine dependencies by calling register and resolve at the same time

injf.register('sumSquare', injf.resolve(sum => sum * sum));
injf.register('sum', injf.resolve((x, y) => x + y));
injf.register('x', 1);
injf.register('y', 2);
const result = await injf.resolve('sumSquare');
expect(result).toEqual(9);

Note that await must only be called when getting the result, not when registering dependencies. If you called await inside the sumSquare registration section, you'd get an error as sum is not yet known to the container.

No circular dependencies are currently supported.