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

mediatify

v1.0.0

Published

A lightweight mediator implementation for TypeScript, inspired by ASP.NET Core MediatR, following the Command Query Responsibility Segregation (CQRS) pattern. This package helps to decouple request dispatching from request handling, allowing for better se

Downloads

72

Readme

mediatify

A lightweight mediator implementation for TypeScript, inspired by ASP.NET Core MediatR, following the Command Query Responsibility Segregation (CQRS) pattern. This package helps to decouple request dispatching from request handling, allowing for better separation of concerns.

Features

  • CQRS pattern: Supports Commands and Queries in a single IRequest interface.
  • Handler Registration: Handlers are automatically registered by scanning project directories for annotated classes.
  • Pipeline Behavior: Supports pipeline behaviors (like logging, validation, etc.) that can be applied around requests.
  • Singleton Mediator: A singleton mediator ensures all handlers are registered once and reused throughout the app.
  • Asynchronous Support: Fully supports async/await for request handling and pipeline behaviors.

Installation

You can install the package via npm:

npm install mediatify
yarn add mediatify

Usage

Example: CreateUserCommand

Step 1: Define the Command (Request, Response)

// core/useCase/createUser/CreateUserCommand.ts
export class CreateUserCommand implements IRequest<CreateUserCommandResponse> {
  constructor(public username: string, public email: string) {}
}
// core/useCase/createUser/CreateUserCommandResponse.ts
export class CreateUserCommandResponse {
  constructor(public result: User) {}
}

This CreateUserCommand will be used to create a new user, and the CreateUserCommandResponse contains the user model as a response.

Step 2: Define the Command Handler

// ore/useCase/createUser/CreateUserCommandHandler.ts
export class CreateUserCommandHandler implements IRequestHandler<CreateUserCommand, CreateUserCommandResponse> {

    constructor(@Inject(HttpClient) private httpClient: HttpClient) {}

    async handle(request: CreateUserCommand): Promise<CreateUserCommandResponse> {
        // Simulate user creation logic
        const response = await this.httpClient.post(API_URL, request);
        return new CreateUserResponse(response.data);
    }
}

The CreateUserCommandHandler is responsible for handling the CreateUserCommand and returning a new user object.

Step 3: Define a Pipeline (Optional)

Pipelines allow you to run custom logic before or after a request is handled:

// pipelines/LoggingPipeline.ts
import { IPipeline } from 'mediator.ts';

export class LoggingPipeline<TRequest, TResponse> implements IPipeline<TRequest, TResponse> {
  async process(request: TRequest, next: () => Promise<TResponse>): Promise<TResponse> {
    console.log('Handling request:', request);
    const response = await next();
    console.log('response:' , response);
    return response;
  }
}

Step 4: Register Handlers and Pipelines

Handlers are automatically registered by scanning the project directories. Below is an example of registering the CreateUserCommandHandler and using the pipeline:

async function main() {
  const mediator = Mediator.getInstance();
  await mediator.registerHandlers("../core/useCases/");

  mediator.registerPipeline(new LoggingPipeline());


  // Send a request
  const request = new CreateUserCommand("faraj", "[email protected]");

  const createUserCommandResponse = await mediator.send<CreateUserCommand,CreateUserCommandResponse>(request);
  

  console.log(createUserCommandResponse.result);

}

API

Mediator Class

Methods

  • registerHandler(requestType: string, handler: IRequestHandler) Registers a handler for a specific request type.
  • registerPipeline(pipeline: IPipeline) Registers a pipeline behavior to be applied to all requests.
  • send<TRequest extends IRequest<TResponse>, TResponse>(request: TRequest): Promise<TResponse> Sends a request and invokes the corresponding handler, passing through the pipeline behaviors if registered.

Annotations

Handlers are registered automatically by scanning the project files using the @Handler decorator.

Pipeline

A pipeline is a function that processes a request before and/or after the handler is invoked.

interface IPipeline<TRequest, TResponse> {
  process(request: TRequest, next: () => Promise<TResponse>): Promise<TResponse>;
}

Inspired by

This package is heavily inspired by the MediatR library in ASP.NET Core, which implements the mediator pattern in .NET.

Contributing

Contributions are welcome! Please follow these steps to contribute:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Run the tests (yarn test).
  5. Commit your changes (git commit -am 'Add new feature').
  6. Push to the branch (git push origin feature-branch).
  7. Create a new Pull Request.
  8. Get your changes reviewed.

License

This project is licensed under the MIT License.