
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
mgr-swagger-express
Advanced tools
Swagger annotations for your express project
npm install mgr-swagger-express --save
or
yarn add mgr-swagger-express
app.js:
import express from 'express'
import generateSwagger, { SET_EXPRESS_APP } from 'mgr-swagger-express'
const app = express()
SET_EXPRESS_APP(app)
import MyResource from './resource.service' // Note, the import should happen AFTER the SET_EXPRESS_APP call
const swaggerDocument = generateSwagger({
name: "My Service Name",
version: "0.0.1",
description: "My Service Description",
host: `localhost:5000`,
basePath: '/',
})
app.use(
'/swagger',
swaggerUI.serve,
swaggerUI.setup(swaggerDocument));
}
resource.service.js:
import { GET, POST, addSwaggerDefinition } from "mgr-swagger-express"
const ResourceDescription = {
type: 'object',
properties: {
id: 'string',
name: 'string'
}
}
const ResourceStatus = {
type: 'object',
properties: {
status: {
type: 'string',
enum: ['running', 'failed', 'stopped']
}
}
}
export default class BotService {
constructor() {
addSwaggerDefinition('ResourceDescription', ResourceDescription)
addSwaggerDefinition('ResourceStatus', ResourceStatus)
}
@GET({
path: '/resource',
description: 'Get all resources available',
tags: ['Resources'],
success: '#/definitions/ResourceDescription',
})
public async getAvailableResources(args, context) {
return []
}
@POST({
path: '/resource/{resourceId}',
description: 'Update resource by ID and get its status',
parameters: [{
name: 'resourceId',
description: 'Resource ID',
}],
tags: ['Resources'],
success: '#/definitions/ResourceStatus'
})
public async updateResource(args, context) {
return {
status: 'failed'
}
}
}
FAQs
Swagger annotations for your express project
The npm package mgr-swagger-express receives a total of 18 weekly downloads. As such, mgr-swagger-express popularity was classified as not popular.
We found that mgr-swagger-express 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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.