
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
elements-express
Advanced tools
Express Middleware for Stoplight Elements API Documentation - Beautiful, Interactive, and Zero-Config API Documentation for Express Apps
Enhance your Express.js applications with stunning, interactive API documentation using Stoplight Elements. This middleware seamlessly integrates with your existing Express server to provide a professional documentation experience with minimal setup.
npm install elements-express
const express = require('express');
const elements = require('elements-express');
const app = express();
// Serve Stoplight Elements documentation with embedded static assets
app.use('/docs', elements({
apiDescriptionUrl: '/openapi.json',
title: 'My API Documentation', // Optional: custom page title
}));
// Serve your OpenAPI specification
app.use('/openapi.json', express.static('path/to/your/openapi.json'));
app.listen(3000, () => {
console.log('Documentation available at http://localhost:3000/docs');
});
const express = require('express');
const elements = require('elements-express');
const fs = require('fs');
const app = express();
// Read the OpenAPI specification directly
const openApiSpec = JSON.parse(fs.readFileSync('path/to/your/openapi.json', 'utf8'));
// Serve Stoplight Elements documentation with embedded static assets
app.use('/docs', elements({
apiDescriptionDocument: openApiSpec,
title: 'My API Documentation', // Optional: custom page title
}));
app.listen(3000, () => {
console.log('Documentation available at http://localhost:3000/docs');
});
import express from 'express';
import elements from 'elements-express';
import fs from 'fs';
const app = express();
// Read the OpenAPI specification directly
const openApiSpec = JSON.parse(fs.readFileSync('path/to/your/openapi.json', 'utf8'));
// Serve Stoplight Elements documentation with embedded static assets
app.use('/docs', elements({
apiDescriptionDocument: openApiSpec,
title: 'My API Documentation', // Optional: custom page title
}));
app.listen(3000, () => {
console.log('Documentation available at http://localhost:3000/docs');
});
| Option | Type | Default | Description |
|---|---|---|---|
apiDescriptionUrl | string | undefined | URL to your OpenAPI specification (JSON or YAML). Either apiDescriptionUrl or apiDescriptionDocument is required. |
apiDescriptionDocument | object/string | undefined | OpenAPI specification as a JavaScript object or JSON/YAML string. Either apiDescriptionUrl or apiDescriptionDocument is required. |
title | string | 'API Documentation' | Custom title for the documentation page |
basePath | string | undefined | Base path to the API |
hideTryItPanel | boolean | false | Hide the Try It panel in the documentation |
hideInternal | boolean | false | Hide internal operations in the documentation |
hideTryIt | boolean | false | Hide the Try It feature in the documentation |
hideSchemas | boolean | false | Hide schemas in the documentation |
hideExport | boolean | false | Hide export functionality in the documentation |
tryItCorsProxy | string | undefined | CORS proxy URL for Try It feature |
tryItCredentialPolicy | string | undefined | Credential policy for Try It feature |
logo | string | undefined | Logo URL for the documentation |
layout | string | 'sidebar' | Layout for the documentation ('sidebar', 'responsive', or 'stacked') |
router | string | 'hash' | Router for the documentation ('history', 'hash', 'memory', or 'static') |
elements-dist package and generates an HTML page that includes the Stoplight Elements web componentPlace your OpenAPI specification file in your project and serve it with Express:
app.use('/openapi.json', express.static('public/openapi.json'));
Stoplight Elements, Express middleware, API documentation, OpenAPI documentation, Swagger alternative, Redoc alternative, interactive API docs, REST API documentation, developer portal, API explorer, Express.js documentation, API reference, documentation generator, API visualization, OpenAPI 3.0, OpenAPI 3.1
MIT
⭐ Like this project? Star it on GitHub and follow us for updates!
FAQs
Express middleware for serving Stoplight Elements API documentation
We found that elements-express demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.