Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@scalar/nestjs-api-reference
Advanced tools
A middleware for using the Scalar API reference with NestJS
This middleware provides an easy way to render a beautiful API reference based on an OpenAPI/Swagger file with NestJS.
npm install @scalar/nestjs-api-reference
Set up NestJS and set up NestJS Swagger and pass an OpenAPI/Swagger spec to the apiReference
middleware:
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger'
import { apiReference } from '@scalar/nestjs-api-reference'
/* ... */
const app = await NestFactory.create(AppModule)
const config = new DocumentBuilder()
.setTitle('Cats example')
.setDescription('The cats API description')
.setVersion('1.0')
.addTag('cats')
.build()
const document = SwaggerModule.createDocument(app, config)
/* ... */
const OpenApiSpecification =
/* … */
app.use(
'/reference',
apiReference({
spec: {
content: document,
},
}),
)
Recommended: If you’re serving an OpenAPI/Swagger file already, you can pass an URL, too:
import { apiReference } from '@scalar/nestjs-api-reference'
app.use(
'/reference',
apiReference({
spec: {
url: '/openapi.json',
},
}),
)
The NestJS middleware takes our universal configuration object, read more about configuration in the core package README.
The middleware comes with a custom theme for NestJS. You can use one of the other predefined themes (alternate
, default
, moon
, purple
, solarized
) or overwrite it with none
. All themes come with a light and dark color scheme.
import { apiReference } from '@scalar/nestjs-api-reference'
app.use(
'/reference',
apiReference({
theme: 'purple',
spec: {
url: '/openapi.json',
},
}),
)
You can use a custom CDN ,default is https://cdn.jsdelivr.net/npm/@scalar/api-reference
.
You can also pin the CDN to a specific version by specifying it in the CDN string like https://cdn.jsdelivr.net/npm/@scalar/api-reference@1.25.28
You can find all available CDN versions here
import { apiReference } from '@scalar/nestjs-api-reference'
app.use(
'/reference',
apiReference({
cdn: 'https://cdn.jsdelivr.net/npm/@scalar/api-reference@latest',
spec: {
content: OpenApiSpecification,
},
}),
)
FAQs
A middleware for using the Scalar API reference with NestJS
The npm package @scalar/nestjs-api-reference receives a total of 8,903 weekly downloads. As such, @scalar/nestjs-api-reference popularity was classified as popular.
We found that @scalar/nestjs-api-reference demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.