Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

express-sitemap-html

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-sitemap-html

An express middleware that builds an HTML sitemap dynamically

  • 1.2.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
60
Maintainers
1
Weekly downloads
 
Created
Source

express-sitemap-html

Build Coverage Status Version npm

An express middleware that builds an HTML sitemap dynamically. This is NOT an alternative to sitemap.xml, but an additional feature that helps users (and developers) to find and test routes of an express application.

Usage

express-sitemap-html offers an easy way to get an up-to-date HTML index with the endpoints of an express application. It renders a snapshot of all paths of your express application, as links to the corresponding pages, which you can easily navigate (such as a table of contents of your application).

Alternatively you may generate a minimalistic Swagger UI with additional capabilities for route parameters inferred from installed express routes.

const express = require('express')
const sitemap = require('express-sitemap-html')

const app = express()
//... configure routes for the app express

// Add a route to the sitemap
app.get('/sitemap', sitemap(app))

// Alternatively auto generate and install a swagger UI for given express app:
sitemap.swagger('Your app name', app) // available at /api-docs

Installation

$ npm install express-sitemap-html

License

MIT

Keywords

FAQs

Package last updated on 16 Nov 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc