1.0.1 • Published 5 years ago

nestjs-fire v1.0.1

Weekly downloads
18
License
MIT
Repository
github
Last release
5 years ago

Nestjs FireWall

FireWall guard with black or white list for NestJs.

Installation

Yarn

yarn add nestjs-fire

NPM

npm install nestjs-fire --save

Getting Started

import { Controller, Get, UseGuards } from '@nestjs/common'
import { IPs, WhiteListGuard, BlackListGuard } from 'nestjs-fire'

@IPs('127.0.0.1')
OR
@Hosts('www.xxx.com')
@UseGuards(BlackListGuard)
@Controller('')
export class TestController {

    @IPs('127.0.0.1')
    OR
    @Hosts('www.xxx.com')
    @UseGuards(BlackListGuard)
    @Get()
    root() {
        return xxx
    }
}

That's it!