Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
express-sitemap-html
Advanced tools
An express middleware that builds an HTML sitemap dynamically
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.
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
$ npm install express-sitemap-html
FAQs
An express middleware that builds an HTML sitemap dynamically
The npm package express-sitemap-html receives a total of 55 weekly downloads. As such, express-sitemap-html popularity was classified as not popular.
We found that express-sitemap-html 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.