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

nest-hooks

v1.0.0

Published

Hooks Module for NestJS projects

Downloads

4

Readme

Build Status

NestPack Hooks

A NestJs hooks system for developing extendable module logic.

The NestJs module system is a fantastic tool for writing modular code. However, projects can easily become a mess when developers start cross linking business logic between modules. A previously independent module that another one depends on ends up needing a forwardRef and a developer makes calls to a secondary mmodule inside of a primary one. This results in an application that could have been clearly segmented turning into a tightly coupled monstrosity... that happens to have modules.

NestPack Hooks allows a developer to write code injection points(hooks) inside of modules that will be imported by others. Consuming modules than then write Actions that listen for those Hook events and run their injected code before the imported module continues its logic.

Why not use the Events System?

In a totally stream and realtime endpoint based environment, NestPack Hooks is not required, as the @nestjs/cqrs module can emit simple events and have other listeners trigger responses. Understandably, events are asynchronous operations, and can only be used in situations where the event emitting logic doesn't care about the results and doesn't need to wait for execution. In a REST endpoint setting, the event system will resolve async code after the response has already been returned. NestPack Hooks solves this by providing an "event-like" pattern where actions(similar to events) are run in order of registration, and wait for promises returns from actions.

Installation

$ npm install @nestpack/hooks
# OR
$ yarn add @nestpack/hooks

Usage

Try it out on codesandbox (You may need to restart the sandbox on changes.)

Import the HooksModule and provide the Actions you wish to register.

// app.module.ts
import { Module } from '@nestjs/common';
import { HooksModule } from '@nestpack/hooks';
import { AppController } from './app.controller';
import { DoubleValueAction } from './double-value.action';

@Module({
  // Import the Hooks Module
  imports: [HooksModule],
  controllers: [AppController],
  // Provide the actions you wish to register
  providers: [DoubleValueAction],
})
export class AppModule {}

Create a hook that will be run. Hooks only need to be a class and can contain whatever additional information wanted.

// example.hooks.ts

// A hook can be any class
export class ExampleHook {
  // Here we're including a value for manipulation
  value = 1;
}

Create a Hook Action that will be run whenever the Hook is run.

// double-value.action.ts
import { IHookAction, HookAction } from '@nestpack/hooks';
import { ExampleHook } from './example.hook';

/**
 * Apply the HookAction decorator with a reference to the actions
 * this hook should trigger on. To add more than one action, add them
 * as additional parameters.
 *
 * If no actions are passed, this hook will run for all actions.
 */
@HookAction(ExampleHook)
// This action will double the value of the provided hook.
export class DoubleValueAction implements IHookAction {
  // the handle function can be sync or async
  async handle(hook: ExampleHook) {
    //simulate an async call
    await new Promise(r => setTimeout(r, 1000));
    //Optionally mutate data inside of the privded hook
    hook.value = hook.value * 2;

    /**
     * Optional: return a new value to be passed to the next hook
     *
     * After all hooks are run, the final value is passed back to runHook
     */
    return hook;
  }
}

Include the HooksService and run the desired hook.

// app.controller.ts

import { Controller, Get } from '@nestjs/common';
import { HooksService } from '@nestpack/hooks';
import { ExampleHook } from './example.hook';

@Controller()
export class AppController {
  // Add the HooksService dependency
  constructor(private readonly hooksService: HooksService) {}

  @Get()
  async getValue() {
    // Run the hook by passing an instance of the defined hook
    const result = await this.hooksService.runHook(new ExampleHook());

    return result.value;
  }
}

License

MIT licensed.