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

wyr-ts

v0.1.8

Published

**Pronounced**: _wire_ **Wyr** is a zero-crap, zero-dependency, lightweight, and typesafe dependency injection framework for TypeScript. It’s designed to be simple yet powerful, with full support for asynchronous bindings.

Downloads

480

Readme

Wyr

Pronounced: wire
Wyr is a zero-crap, zero-dependency, lightweight, and typesafe dependency injection framework for TypeScript. It’s designed to be simple yet powerful, with full support for asynchronous bindings.

Features

  • Typesafe: Enjoy TypeScript’s type safety when defining and retrieving dependencies.
  • Async Bindings: First class support for async initialization and parallelization of initialization.
  • Thread-safe: Modules are immutable and can be shared safely.

Installation

To install Wyr, run:

npm install --save wyr-ts

Core concepts

Modules

A Module is where bindings are defined. You can create a module using Wyr.module(), which will create an empty module. Modules are lightweight, immutable, and can be merged with other modules to combine bindings.

const userModule = Wyr.module()
    .bind(UserService.key).toClass([UserRepo.key,UserEventEmitter.key],DefaultUserService)
    .bind(UserEventEmitter.key).toFun([KafkaFactory.key,DefaultUserEventEmitter.Config.key],createUserEventEmitter)
    .bind(UserRepo.key).toClass([MongoDatabase.key,MongoUserRepo.Config.key],MongoUserRepo)

Containers

A Container is created from a module and is used to initialize and retrieve dependencies. Once you've defined bindings in multiple modules, you can get a container from it, to access the bound dependencies. You cannot bind dependencies to a container, they have to be bound to a module.

const container = Wyr.container(userModule,mongoModule,kafkaModule,httpModule)
//or
const container = userModule.mergedWith(mongoModule).mergedWith(kafkaModule).mergedWith(httpModule).asContainer()

Binding keys

A Bindking Key is a unique identifier for each dependency.. You can create them using Symbol and a type annotation which ensures uniqueness and type safety

namespace UserService{
    const key:BindingKey<UserService> = Symbol('UserService')
}

Bindings

A Binding connects a binding key to a dependency (ie, a way to build it using other dependencies). You can bind a key to a dependency using module.bind(key).toClass or module.bind(key).toFun or module.bind(key).toValue. Modules are immutable, so whenever you bind something, it will return a new module with the new binding in it. So it's important you chain bindings.

const userModule = Wyr.module()
    .bind(UserService.key).toClass([UserRepo.key,UserEventEmitter.key],DefaultUserService)
    .bind(UserEventEmitter.key).toFun([KafkaFactory.key,DefaultUserEventEmitter.Config.key],createUserEventEmitter)
    .bind(UserRepo.key).toClass([MongoDatabase.key,MongoUserRepo.Config.key],MongoUserRepo)

Retrieving dependencies.

You can retrieve dependencies from a container using the .get method. this method takes a key, or a tuple of keys, and will return a promise with the dependency, or a tuple of dependencies. Tuple semantics were added to be able to leverage parallelization of initialization.

const userService = await container.get(UserService.key) 
// OR
const [userService,kafkaFactory] = await container.get([UserService.key,KafkaFactory.key])

License

Wyr is licensed under the MIT License.