New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

elements-express

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elements-express

Express middleware for serving Stoplight Elements API documentation

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

elements-express 🚀

NPM Version License Downloads

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.

🌟 Features & Benefits

  • Interactive API Console - Test endpoints directly in the documentation
  • Zero Configuration - Get started in seconds with minimal setup
  • Beautiful UI - Modern, responsive design that developers love
  • OpenAPI 3.x Support - Full compatibility with OpenAPI specifications
  • Embedded Assets - No external dependencies or CDN requirements
  • Customizable - Easily configure titles and API spec URLs
  • SEO Optimized - Built-in meta tags for better search engine indexing

📦 Installation

npm install elements-express

🚀 Quick Start

Basic Setup

Using apiDescriptionUrl (External API Spec)

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');
});

Using apiDescriptionDocument (Inline API Spec)

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');
});

ES Modules

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');
});

⚙️ Configuration Options

OptionTypeDefaultDescription
apiDescriptionUrlstringundefinedURL to your OpenAPI specification (JSON or YAML). Either apiDescriptionUrl or apiDescriptionDocument is required.
apiDescriptionDocumentobject/stringundefinedOpenAPI specification as a JavaScript object or JSON/YAML string. Either apiDescriptionUrl or apiDescriptionDocument is required.
titlestring'API Documentation'Custom title for the documentation page
basePathstringundefinedBase path to the API
hideTryItPanelbooleanfalseHide the Try It panel in the documentation
hideInternalbooleanfalseHide internal operations in the documentation
hideTryItbooleanfalseHide the Try It feature in the documentation
hideSchemasbooleanfalseHide schemas in the documentation
hideExportbooleanfalseHide export functionality in the documentation
tryItCorsProxystringundefinedCORS proxy URL for Try It feature
tryItCredentialPolicystringundefinedCredential policy for Try It feature
logostringundefinedLogo URL for the documentation
layoutstring'sidebar'Layout for the documentation ('sidebar', 'responsive', or 'stacked')
routerstring'hash'Router for the documentation ('history', 'hash', 'memory', or 'static')

💡 How It Works

  • The middleware serves both the static CSS and JavaScript files from the elements-dist package and generates an HTML page that includes the Stoplight Elements web component
  • The web component fetches your OpenAPI specification and renders interactive documentation
  • Developers can browse endpoints, test APIs directly in-browser, and understand your API quickly

📄 Example OpenAPI Specification

Place your OpenAPI specification file in your project and serve it with Express:

app.use('/openapi.json', express.static('public/openapi.json'));

🔍 Keywords

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

📄 License

MIT

Like this project? Star it on GitHub and follow us for updates!

Keywords

express

FAQs

Package last updated on 21 Dec 2025

Did you know?

Socket

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.

Install

Related posts