Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@brainstack/inject

Package Overview
Dependencies
Maintainers
0
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brainstack/inject

A Micro Dependency Injection Package

  • 1.2.145
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-98.63%
Maintainers
0
Weekly downloads
 
Created
Source

@brainstack/inject

A lightweight dependency injection library for JavaScript and TypeScript, designed to facilitate dependency management and injection in your projects.

Installation

You can install the package using npm:

npm install @brainstack/inject

Usage

Import the inject function and use it to create a dependency container. You can then register and get for dependencies in the container.

Importing

import { inject } from '@brainstack/inject';

Creating a Dependency Container

const container = inject();

Registering a Dependency

interface Logger {
  log(message: string): void;
}

class ConsoleLogger implements Logger {
  log(message: string) {
    console.log(message);
  }
}

const logger = new ConsoleLogger();

const unregister = container.register<Logger>('logger', logger);

Getting a Dependency

const retrievedLogger = container.get<Logger>('logger');
retrievedLogger.log('Hello, world!');

Examples

Example 1: Registering and Retrieving a Logger Service

import { inject } from '@brainstack/inject';

const container = inject();

interface Logger {
  log(message: string): void;
}

class ConsoleLogger implements Logger {
  log(message: string) {
    console.log(message);
  }
}

const logger = new ConsoleLogger();

container.register<Logger>('logger', logger);

const retrievedLogger = container.get<Logger>('logger');
retrievedLogger.log('Hello, world!');

In this example, we define a Logger interface and create a ConsoleLogger class that implements this interface. We then register an instance of ConsoleLogger with the ID 'logger' in the dependency container. Finally, we retrieve the logger service using the get method and use it to log a message.

API

inject()

Creates a new dependency container.

Returns: Dependency container object with methods.

register<T>(id: string, instance: T): () => void

Registers a new dependency in the container.

  • id: The ID of the dependency.
  • instance: The instantiated object of the dependency.

Returns: A function to unregister the API section of the README.md file:

get<T>(id: string): T | undefined

Gets a dependency from the container by its ID.

  • id: The ID of the dependency.

Returns: The retrieved dependency or undefined if not found.

Contributing

Contributions are welcome! If you would like to contribute to this module, please follow these guidelines:

Fork the repository Create a new branch for your changes Make your changes and commit them with descriptive commit messages Push your changes to your fork Submit a pull request

License

This module is released under the MIT License.

Keywords

FAQs

Package last updated on 30 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc