
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
nestjs-swagger-hide-on-prod
Advanced tools
A progressive Node.js framework for building efficient and scalable server-side applications.
Exclude your nestjs controller or endpoint from swagger documentization on production env.
$ yarn add nestjs-swagger-hide-on-prod
or
$ npm i --save nestjs-swagger-hide-on-prod
In default, when NODE_ENV
is set to PROD
or PRODUCTION
, following decorators will exclude the whole controller or specific endpoint
To exclude whole controller on prod :
@Controller('foo')
@ApiTags('Foo API')
@SwaggerHideControllerOnProd() // Add this line to exclude FooController from swagger when process is on production environment
export class FooController {
constructor(private readonly fooService: FooService) {}
@Get(':fooId')
searchFoos(): Promise<any[]> {
return Promise.resolve([]);
}
@Post()
createFoo(): Promise<any> {
return Promise.resolve();
}
}
To Exclude specific endpoint only on prod :
@Controller('foo')
@ApiTags('Foo API')
export class FooController {
constructor(private readonly fooService: FooService) {}
@Get(':fooId')
searchFoos(): Promise<any[]> {
return Promise.resolve([]);
}
@Post()
@SwaggerHideEndpointOnProd() // Exclude POST /foo endpoint from swagger on prod env
createFoo(): Promise<any> {
return Promise.resolve();
}
}
To customize exclusion condition you can use
instead.
Input parameter could be static boolean
or a function
, which returns a boolean
value.
@Controller('foo')
@ApiTags('Foo API')
export class FooController {
constructor(private readonly fooService: FooService) {}
@Get(':fooId')
@ApiOperation({
summary: 'Search foos info',
description: 'This method is depreacted. Please, use GET "v2" instaed',
})
@SwaggerHideEndpoint(() => {
return moment(new Date()).isAfter(`2022-12-31`);
// After year 2022, this method would be excluded from swagger documentization
})
veryOldFooSearchApi(): Promise<any[]> {
return Promise.resolve([]);
}
@Get('v2/:fooId')
@ApiOperation({
summary: `Search foos info`,
description: `Get information matches id`,
})
brandNewFooSearchApi(): Promise<any[]> {
return Promise.resolve([]);
}
}
FAQs
A progressive Node.js framework for
The npm package nestjs-swagger-hide-on-prod receives a total of 1 weekly downloads. As such, nestjs-swagger-hide-on-prod popularity was classified as not popular.
We found that nestjs-swagger-hide-on-prod demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.