npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

elements-express

v1.0.0

Published

Express middleware for serving Stoplight Elements API documentation

Readme

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

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

💡 How It Works

  1. 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
  2. The web component fetches your OpenAPI specification and renders interactive documentation
  3. 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!