Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feross/express-sitemap-xml
Serve sitemap.xml from a list of URLs in Express
https://github.com/feross/express-sitemap-xml
express javascript middleware nodejs sitemap sitemap-generator sitemap-xml
Last synced: 5 days ago
JSON representation
Serve sitemap.xml from a list of URLs in Express
- Host: GitHub
- URL: https://github.com/feross/express-sitemap-xml
- Owner: feross
- License: mit
- Created: 2018-07-15T01:13:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T22:52:16.000Z (9 months ago)
- Last Synced: 2025-01-08T21:14:24.146Z (13 days ago)
- Topics: express, javascript, middleware, nodejs, sitemap, sitemap-generator, sitemap-xml
- Language: JavaScript
- Homepage:
- Size: 196 KB
- Stars: 67
- Watchers: 5
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# express-sitemap-xml [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
[travis-image]: https://img.shields.io/travis/feross/express-sitemap-xml/master.svg
[travis-url]: https://travis-ci.org/feross/express-sitemap-xml
[npm-image]: https://img.shields.io/npm/v/express-sitemap-xml.svg
[npm-url]: https://npmjs.org/package/express-sitemap-xml
[downloads-image]: https://img.shields.io/npm/dm/express-sitemap-xml.svg
[downloads-url]: https://npmjs.org/package/express-sitemap-xml
[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg
[standard-url]: https://standardjs.com### Express middleware to serve [`sitemap.xml`](https://en.wikipedia.org/wiki/Sitemaps) from a list of URLs
Create an Express middleware that serves `sitemap.xml` from a list of URLs.
This package automatically handles sitemaps with more than 50,000 URLs. In these
cases, multiple sitemap files will be generated along with a "sitemap index" to
comply with the [sitemap spec](https://www.sitemaps.org/protocol.html) and
requirements from search engines like Google.If only one sitemap file is needed (i.e. there are less than 50,000 URLs) then
it is served directly at `/sitemap.xml`. Otherwise, a sitemap index is served at
`/sitemap.xml` and sitemaps at `/sitemap-0.xml`, `/sitemap-1.xml`, etc.## Install
```
npm install express-sitemap-xml
```## Demo
You can see this package in action on [BitMidi](https://bitmidi.com), a site for
listening to your favorite MIDI files.## Usage (with Express)
The easiest way to use this package is with the Express middleware.
```js
const express = require('express')
const expressSitemapXml = require('express-sitemap-xml')const app = express()
app.use(expressSitemapXml(getUrls, 'https://bitmidi.com'))
async function getUrls () {
return await getUrlsFromDatabase()
}
```Remember to add a `Sitemap` line to `robots.txt` like this:
```
Sitemap: https://bitmidi.com/sitemap.xml
```## Usage (without Express)
The package can also be used without the Express middleware.
```js
const { buildSitemaps } = require('express-sitemap-xml')async function run () {
const urls = ['/1', '/2', '/3']
const sitemaps = await buildSitemaps(urls, 'https://bitmidi.com')console.log(Object.keys(sitemaps))
// ['/sitemap.xml']console.log(sitemaps['/sitemap.xml'])
// `
//
//
// https://bitmidi.com/1
// ${getTodayStr()}
//
//
// https://bitmidi.com/2
// ${getTodayStr()}
//
//
// https://bitmidi.com/3
// ${getTodayStr()}
//
// `
})
```Remember to add a `Sitemap` line to `robots.txt` like this:
```
Sitemap: https://bitmidi.com/sitemap.xml
```## API
### `middleware = expressSitemapXml(getUrls, base)`
Create a `sitemap.xml` middleware. Both arguments are required.
The `getUrls` argument specifies an async function that resolves to an array of
URLs to be included in the sitemap. Each URL in the array can either be an
absolute or relative URL string like `'/1'`, or an object specifying additional
options about the URL:```js
{
url: '/1',
lastMod: new Date('2000-02-02'), // optional (specify `true` for today's date)
changeFreq: 'weekly' // optional
}
```For more information about these options, see the [sitemap spec](https://www.sitemaps.org/protocol.html). Note that the `priority` option is not supported because [Google ignores it](https://twitter.com/methode/status/846796737750712320).
The `getUrls` function is called at most once per 24 hours. The resulting
sitemap(s) are cached to make repeated HTTP requests faster.The `base` argument specifies the base URL to be used in case any URLs are
specified as relative URLs. The argument is also used if a sitemap index needs
to be generated and sitemap locations need to be specified, e.g.
`${base}/sitemap-0.xml` becomes `https://bitmidi.com/sitemap-0.xml`.### `sitemaps = expressSitemapXml.buildSitemaps(urls, base)`
Create an object where the keys are sitemap URLs to be served by the server and
the values are strings of sitemap XML content. (This function does no caching.)The `urls` argument is an array of URLs to be included in the sitemap. Each URL
in the array can either be an absolute or relative URL string like `'/1'`, or an
object specifying additional options about the URL. See above for more info
about the options.The `base` argument is the same as above.
The return value is an object that looks like this:
```js
{
'/sitemap.xml': '...'
}
```Or if multiple sitemaps are needed, then the return object looks like this:
```js
{
'/sitemap.xml': '...',
'/sitemap-0.xml': '...',
'/sitemap-1.xml': '...'
}
```## License
MIT. Copyright (c) [Feross Aboukhadijeh](https://feross.org).