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

billy

v2.0.3

Published

A minimal application harness that stays out of your way and out of your code.

Downloads

86

Readme

billy

CircleCI

A minimal application harness that stays out of your way and out of your code.

This is the v2 branch, which has back-compat breaking changes from v1, see billy v1.7.3 for the old version.

Installation

$ npm install billy

Overview

The primary goal and driving philosophy of Billy is to provide a cohesive and useful set of utilities for building an complex application, without creeping its way into your business logic and domain code.

Billy is not an opinionated framework that permeates all parts of your codebase, but rather the simple scaffolding that allows you to roll your own application architecture stack, your way.

The Application instance and the Service Stack

The root of your application is a single instance of the Application class:

const Application = require('billy');

const app = new Application();

An application is composed of several services. A service is a class that sets up and starts the various dependencies in your application. Services should be free of all business logic, and should be the only parts of the application that are aware of Billy.

app.service(AppConfigService);

app.service(PostgresDatabaseService);

app.service(SQSQueueService);

app.service(AuthAPIComponent);

If a service implements a start() method, it will be called (and await-ed) when you call app.start() to boot the application.

(async () => {

  await app.start();

  console.log('all services succesfully instantiated and started -- nice!');

})();

All services registered (via Application#service) will be instantiated (with injected constructors, see below) in the order in which they were registered. After all services have been successfully (and synchronously) instantiated, the start method will be called on each one (again, in the order registered) if implemented. If start returns a Promise, the app will wait for it to resolve before continuing.

If any service throws during instantiation or during the start method (or the Promise returned is rejected), then the application will abort its startup.

The Container instance and Dependency Injection

Philosophy behind the IoC container

Registering Dependencies

The various container.register* methods

Resolving Dependencies

Overview of new and call on the container, and locals

Environments

Billy is written to run in modern Javascript environments (ES2017) that support the CommonJS module system and the latest ES2017 Spec (e.g, Node 7.10+). It uses async / await from the ES2017 spec, as well as features introduced in ES2015 (ES6) such as Promise, iterables, and WeakMap.

Older JS Runtimes

If you are not on the absolute cutting edge, you'll want to use a transpiled version of the library.


// Transpiled down to ES5 (pre-ES2015 / pre-ES6)
const Application = require('billy/es5');

// Targeting Node v6+
const Application = require('billy/node6');

Some notes:

  • Even when compiling down to ES5, keep in the mind the code still retains the CommonJS module syntax (i.e require calls)
  • There are no polyfills for the new global classes like Promise, Map, WeakMap. If these are not available in your environment, you will need to include them first before Billy
  • The es5 target is dependent on a globally-available regenerator polyfill.
  • For more information on polyfills and regenerator, see the official Babel docs

API

Application()

Root application class.

const app = new Application();

Application#service(T)

Register a service class with the application.

app.service(PostgresDatabaseService);

Application#start()

Instantiate and start all services in the order they were registered.

await app.start();

Application#stop()

Give each service a chance to shut down in reverse order they were started.

await app.stop();

Application#container

Reference to the dependency injection container for the application.

Container

The dependency injection container. There is no need to instantiate this directly as a reference to the application's container is exposed as a property on the Application instance:

const container = app.container;

Container#registerValue(tag, thing)

Store a simple value in the container. Every time the tag dependency is resolved, the same value is returned.

app.container.registerValue('config', require('./config.json'));

Container#registerFactory(tag, factory)

Store a factory function in the container. Every time the tag dependency is resolved, the factory function will be called with its parameters injected.

app.container.registerFactory('currentTime', () => new Date());

Container#registerClass(tag, T)

Store a class in the container. Every time the tag dependency is resolved, a fresh instance of the class is instantiated, with its constructor parameters injected.

app.container.registerClass('logger', ElasticSearchLogger);

Container#registerSingleton(tag, T)

Store a singleton class in the container. The first time tag dependency is resolved, the class will be instantiated and cached. Each subsequent resolution of tag will return the original instance after that.

app.container.registerSingleton('db', PostgresDatabaseDriver);

Container#resolve(tag)

Resolve a dependency from the container via its string tag. Typically this method shouldn't be used directly, but rather rely on automatic injection to get a hold of registered dependencies.

const db = app.container.resolve('db');

Contributors

Testing

$ npm test

License

MIT