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

@cisstech/nestjs-expand

v1.3.0

Published

A NestJS module to build Dynamic Resource Expansion for APIs

Downloads

24

Readme

@cisstech/nestjs-expand

A NestJS module to build Dynamic Resource Expansion for APIs

CI codecov codefactor GitHub Tag npm package NPM downloads licence code style: prettier

Overview

The NestJS Expandable Library is a powerful and flexible extension for NestJS applications, providing a generic pattern for resource expansion in REST APIs. It allows you to dynamically expand and include related resources in API responses, enhancing the flexibility of your API design.

Features

  • Dynamic Resource Expansion: Easily expand related resources in API responses using query parameters.
  • Dynamic Field Selection: Easily select only the fields you want to get from the API responses using query parameters.
  • Decorator-Based Configuration: Use decorators to mark classes and methods as expanders and expandable, simplifying configuration.
  • Enhanced Metadata Handling: Improved handling of metadata allows for multiple decorators of the same type on the same target.
  • Configuration and Customization: Configure and customize the library to suit your application's specific needs.
  • Error Handling: Graceful handling of errors during expansion with customizable logging options.
  • Tested and Reliable: Extensive unit tests ensure the reliability of the library.

Installation

yarn add @golevelup/nestjs-discovery @cisstech/nestjs-expand

Usage

    1. Decorate Expandable Endpoints
    // user.controller.ts
    import { Controller, Get, NotFoundException } from '@nestjs/common'
    import { Expandable } from '@cisstech/nestjs-expand'
    import { UserDTO } from './user.dto'
    import { UserService } from './user.service'
    
    @Controller('users')
    export class UserController {
      constructor(private readonly userService: UserService) {}
    
      @Get(':id')
      @Expandable(UserDTO)
      async getById(@Param('id') id: string): Promise<UserDTO> {
        const user = await this.userService.getById(id)
        if (!user) {
          throw new NotFoundException(`User not found: ${id}`)
        }
        return new UserDTO(user)
      }
    }
    1. Implement Expander Services
    // user.expander.ts
    import { Injectable, NotFoundException } from '@nestjs/common'
    import { ExpandContext, Expander, Expandable } from '@cisstech/nestjs-expand'
    import { UserDTO } from './user.dto'
    import { CustomerService } from './user.service'
    
    @Injectable()
    @Expander(UserDTO)
    export class UserExpander {
      constructor(private readonly customerService: CustomerService) {}
    
      async customer(context: ExpandContext<Request, UserDTO>): Promise<CustomerDTO> {
        const user = context.parent
        const customer = await this.customerService.getById(user.customerId)
        if (!customer) {
          throw new NotFoundException(`Customer not found: ${user.customerId}`)
        }
        return new CustomerDTO(customer)
      }
    }
    1. Register the controllers and expanders
// app.module.ts

import { Module } from '@nestjs/common'
import { NestKitExpandModule } from '@cisstech/nestjs-expand'
import { UserExpander } from 'PATH_TO_FILE'
import { UserController } from 'PATH_TO_FILE'

@Module({
  imports: [NestKitExpandModule.forRoot()],
  controllers: [UserController],
  providers: [UserExpander],
})
export class AppModule {}

Configuration Options

The library provides configuration options to customize its behavior. You can pass an optional configuration object when initializing the ExpandService in your module.

// app.module.ts

import { Module } from '@nestjs/common'
import { NestKitExpandModule } from '@cisstech/nestjs-expand'
import { UserExpander } from 'PATH_TO_FILE'
import { UserController } from 'PATH_TO_FILE'

@Module({
  imports: [
    NestKitExpandModule.forRoot({
      enableLogging: true,
      enableGlobalSelection: true,
    }),
  ],
  controllers: [UserController],
  providers: [UserExpander],
})
export class AppModule {}

Documentation

For detailed documentation, examples, and advanced usage, please refer to the official documentation at https://cisstech.github.io/nestkit/docs/nestjs-expand/getting-started

A presentation article is also available medium

License

MIT © Mamadou Cisse