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

svc-registry

v1.0.0

Published

A JavaScript service registry.

Downloads

8

Readme

js-svc-registry

A JavaScript service registry.

Usage

npm install svc-registry

In your main file you can create a new service registry

const SvcRegistry = require('svc-registry');

const sr = new SvcRegistry();

Then register some services

const sr = require('svc-registry').getRegistry();
// this is the same sr as in the main file

const service1Impl = new Service1();

const service2Impl = new Service2('foo/bar/baz');
service2Impl.setType(Service2.types.SOME_TYPE);

sr.register(Service1, service1);
sr.register(Service2, service2);

You can then access those services from anywhere

const sr = require('svc-registry').getRegistry();

const service1Impl = sr.get(Service1);
// this is the same service1Impl as we registered

You can also replace existing services, unregister services, create additional named registries, and destroy registries.

Method Reference

SvcRegistry

The constructor can be called with no argument or with a single argument. The single argument is the name of the registry. This allows multiple service registries to be created.

getRegistry

This static method will get a service registry by name. If the argument is omitted, the default service registry is returned.

register

This method takes two arguments. The first is the key for the service that you are registering (typically the class reference, but it can be a string) and the second is the instance itself.

replace

This method takes identical arguments to register, but is intended for replacing an existing service. Whereas register will throw an error if you instruct it to overwrite an existing service, replace will not.

unregister

This method takes a single argument: the key for the service that you want to unregister. After unregistered, the instance will no longer be accessible through the service registry.

get

Given a key (class reference), get gets and returns a registered service.

destroy

This method destroys the service registry. A deleted service registry can no longer be found using getRegistry, and existing references to it will not work.

destroyAllRegistries

EXPERIMENTAL

Testing

npm test