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

@teqfw/di

v0.31.0

Published

Dependency Injection container for ES6 modules that works in both browser and Node.js apps.

Downloads

151

Readme

@teqfw/di

npms.io jsdelivr

@teqfw/di is a lightweight dependency injection container for standard JavaScript, enabling late binding of code objects with minimal manual configuration. It integrates smoothly in both browser and Node.js environments, supporting flexibility, modularity, and easier testing for your applications.

Unlike typical object containers, @teqfw/di requires no manual registration of objects, instead mapping dependency IDs directly to their source paths for greater simplicity.

This library is specifically optimized for ES6 modules, ensuring top performance and compatibility. It does not support CommonJS, AMD, UMD, or other module formats.

While this library is primarily designed for JavaScript, it is also fully compatible with TypeScript. Developers can use TypeScript to compose dependency identifiers in the same way as in JavaScript. It is important to ensure that TypeScript transpiles the source code to ES6 modules for proper functionality. With this setup, TypeScript users can effectively leverage the benefits of this library without any additional configuration.

Samples

Explore @teqfw/di in action through the following demo applications:

These projects offer practical examples and insights into using @teqfw/di effectively!

Example of Typical Usage

Using @teqfw/di typically involves a few simple steps: organizing the file structure, declaring dependencies, configuring the container, and finally retrieving the main object with injected dependencies.

Step 1: Organize File Structure

Here’s an example of how files might be organized in a project. This structure can vary depending on your project needs, as the container can be configured to work with any layout (e.g., within /home/user/project/):

./src/
    ./Service/
        ./Customer.js
        ./Sale.js
    ./Config.js
    ./Logger.js
    ./Main.js

Step 2: Declare Dependencies

In your code, declare dependencies by defining them as keys in the constructor. Dependency identifiers here follow a namespace style similar to PHP Zend 1, which is used by default in this library. You can also implement a custom parser if you prefer a different naming convention or mapping strategy.

export default class App_Main {
  constructor(
      {
          App_Config$: config,
          App_Logger$: logger,
          App_Service_Customer$: servCustomer,
          App_Service_Sale$: servSale,
      }
  ) { /* ... */ }
}

Step 3: Configure the Container

Next, set up the container and configure it to use the correct namespace and path for your dependencies:

import Container from '@teqfw/di';

// Create a new instance of the container
const container = new Container();

// Get the resolver from the container
const resolver = container.getResolver();

// Define the namespace root for dependencies, allowing the container to resolve identifiers like 'App_*'
resolver.addNamespaceRoot('App_', '/home/user/project/src'); 

Step 4: Retrieve the Main Object with Dependencies

Finally, retrieve your main application instance. The container automatically injects all declared dependencies:

// Retrieve the main application instance as a singleton asynchronously
const app = await container.get('App_Main$');

Key Benefits

@teqfw/di offers the core functionality of any object container — creating objects and injecting dependencies — with extensive flexibility and configurability. This allows the library to adapt seamlessly to a wide range of project needs. Here’s what makes it stand out:

  • Automatic Dependency Resolution: The library simplifies managing complex objects and their dependencies by automatically resolving and injecting them based on container configuration. This basic functionality works out of the box but can be fully customized if needed.

  • Flexible Dependency ID Configuration: With customizable parsers and chunks, you can define unique ID schemes for dependencies, making it easy to adapt the library to specific naming conventions or custom mapping rules.

  • Mapping IDs to Source Modules via Resolvers: Thanks to resolvers, @teqfw/di lets you map dependency IDs to their source locations effortlessly. This makes the library adaptable to any project structure or file layout.

  • Preprocessing for Enhanced Control: Built-in preprocessing allows modifying dependencies at the time of creation, enabling local overrides or adjustments in functionality. This is especially useful for larger projects, where different teams may tailor dependencies to their specific requirements. The default preprocessing can also be replaced to suit more precise needs.

  • Interfaces and Dependencies Without TypeScript: @teqfw/di allows you to define interfaces using standard JavaScript files with JSDoc annotations. The container supports configuring dependencies to replace interfaces with project-specific implementations, offering flexibility without requiring TypeScript.

  • Postprocessing for Object Customization: Use postprocessing to add wrappers or extend created objects. This can be valuable for adding factories, logging, or other behavior, tailored to each project’s requirements.

These features make @teqfw/di a powerful, adaptable DI container that not only provides ready-to-use solutions but can be easily customized to meet unique project demands.

Installation

For Node.js

To install @teqfw/di in a Node.js environment, use the following command:

$ npm install @teqfw/di

Then, import and initialize the container:

import Container from '@teqfw/di';

/** @type {TeqFw_Di_Container} */
const container = new Container();

For the Browser (ESM Module)

To use @teqfw/di in a browser environment with ES modules, include it as follows (~5KB):


<script type="module">
  import Container from 'https://cdn.jsdelivr.net/npm/@teqfw/di@latest/+esm';

  /** @type {TeqFw_Di_Container} */
  const container = new Container();
</script>

For the Browser (UMD Module)

Alternatively, you can use the UMD version in the browser (~5KB):


<script src="https://cdn.jsdelivr.net/npm/@teqfw/di@latest/dist/umd.js"></script>
<script>
  /** @type {TeqFw_Di_Container} */
  const container = new window.TeqFw_Di_Container();
</script>

Using the Container

In Node.js

  1. Configure Dependency Mapping: Configure the resolver to detect the platform environment. Then, set up namespace roots to map dependency IDs to their source paths.

    import { platform } from 'node:process';
    
    const resolver = container.getResolver();
    resolver.setWindowsEnv(platform === 'win32'); // Adjusts for Windows environment if needed
    resolver.addNamespaceRoot('App_', '/path/to/src');
  2. Retrieve Singleton Instances: Retrieve the main application instance as a singleton asynchronously:

    const app = await container.get('App_Main$');

In the Browser

  1. Configure Dependency Mapping: Set up namespace roots to map dependency IDs to their source paths, using URLs as needed.

    const resolver = container.getResolver();
    resolver.addNamespaceRoot('App_', 'https://cdn.jsdelivr.net/npm/@flancer64/[email protected]/src'); 
  2. Retrieve Singleton Instances: Retrieve the main application instance as a singleton asynchronously:

    const app = await container.get('App_Main$');

With these steps, the container is configured to automatically resolve and inject dependencies based on your setup, whether in Node.js or in a browser environment.

Dependency ID Types

@teqfw/di supports various dependency ID formats to match different import styles and object requirements. Here’s a quick reference:

| Dependency ID | Import Style | Description | |-----------------------------|--------------------------------------------------------|-------------------------------------------------------------------------------------------------------| | App_Service | import * as Service from './App/Service.js'; | Imports the entire module as an ES module. | | App_Service.default | import {default} from './App/Service.js'; | Imports the default export as-is. | | App_Service.name | import {name} from './App/Service.js'; | Imports a named export as-is. | | App_Service$ | import {default as Factory} from './App/Service.js'; | Uses default export as a singleton for the container. | | App_Service$$ | import {default as Factory} from './App/Service.js'; | Creates a new instance from the default export for each dependency. | | App_Service.name$ | import {name} from './App/Service.js'; | Uses a named export as a singleton. | | App_Service.name$$ | import {name} from './App/Service.js'; | Creates a new instance from a named export for each dependency. | | App_Service.name$$(proxy) | import {name} from './App/Service.js'; | Applies a custom wrapper to the created object in postprocessing, using a handler function proxy(). |

Example Usage

Here’s an example showing a class with multiple dependencies, each using different dependency IDs:

export default class App_Main {
    constructor(
        {
            App_Service: EsModule,
            'App_Service.default': defaultExportAsIs,
            'App_Service.name': namedExportAsIs,
            App_Service$: defaultExportAsSingleton,
            App_Service$$: defaultExportAsInstance,
            'App_Service.name$': namedExportAsSingleton,
            'App_Service.name$$': namedExportAsInstance,
            'App_Service.name(factory)': factoryToCreateInstancesFromNamedExport,
        }
    ) {
        const {default: SrvDef, name: SrvName} = EsModule; // Deconstruct the module and access the exports 
    }
}

Summary

@teqfw/di is a versatile and lightweight dependency injection container tailored for modern JavaScript applications. With its flexible dependency mapping, customizable ID configurations, and support for dynamic object creation, @teqfw/di empowers developers to build modular, testable, and scalable codebases.

Whether you’re working in Node.js or a browser environment, @teqfw/di provides a solid foundation with built-in functionality that you can further adapt to fit your project’s unique requirements. You are encouraged to explore and extend this library as needed to create your ideal development environment.

For any questions, feedback, or collaboration opportunities, please feel free to reach out through the following channels:

You can also leave suggestions, feedback, and feature requests directly on GitHub by opening an issue in the repository.

Happy coding!