
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@swagger-dir/core
Advanced tools
A Swagger.io Directory Browser
Please read the documentation on the official site: https://github.com/VdustR/swagger-dir/tree/master/packages/core
npm i @swagger-dir/core
// or use yarn
yarn add @swagger-dir/core
const app = express();
const SwaggerDir = require('@swagger-dir/core');
const swaggerDir = new SwaggerDir(dir, options);
swaggerDir.start();
app.use(swaggerDir.fn);
app.use('subPath', swaggerDir.fn);
const server = app.listen(port);
const close = async () => {
console.log('Service is closing...');
await Promise.all([server.close(), swaggerDir.stop()]);
console.log('Service is closed!');
};
Or you can check how the Swagger DIR CLI works for reference.
const options = {
mode = 'production',
logLevel, // debug: 0, info: 1, warn: 2, error: 3, none: 4. Default: info
formatDate, // Default: date => date.toISOString()
swaggerUiOptions = {},
id, // id for log
}
FAQs
A Swagger.io Directory Browser
We found that @swagger-dir/core 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.