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 🙏

© 2024 – Pkg Stats / Ryan Hefner

clay-sitemaps

v1.0.0

Published

Add sitemaps to Clay sites.

Downloads

447

Readme

clay-sitemaps

A suite of tools for generating sitemaps for Clay sites.

Clay-sitemaps provides two "standard" sitemap middleware, one for text and one for XML, that can get you up and running quickly. It also provides utilities that can help you create your own sitemap logic.

Quick Start

const sitemaps = require('clay-sitemaps')(someAmphoraInstance);

app.use(sitemaps.middleware());

This will create a textual sitemap at /sitemap.txt that includes URLs of published, public pages.

It will also create an XML sitemap at /sitemap.xml that includes published, public pages. Each page will appear as an <url> element with a <loc> set to the page's url property. Additionally, the sitemap template of each component on that page will be rendered and included in that block.

sitemaps.middleware(xmlOpts)

Generates standard "batteries included" middleware for clay sites, using standardXML and standardText routing functions. xmlOpts are passed to the former.

Advanced usage

You can also use the functions behind clay-sitemaps to construct your own sitemap generation logic.

Plug-and-play routing functions

sitemaps.standardXML(options)

Returns a routing function for displaying an XML sitemap. This XML sitemap includes published, public pages, and renders the sitemap.xml template of each component in each page.

Options include:

  • prelude: String. String to prepend to the XML document before the first <url> element. See lib/constants.js for default.
  • postlude: String. String to prepend to the XML document after the last <url> element. Default is </urlset>
  • engines: Object. Engines for rendering the sitemap templates. Default is {handlebars: require('handlebars')}.

sitemaps.standardText()

Returns a routing function for displaying an textual sitemap.

Streaming functions

sitemaps.streamPages(prefix)

Creates an object stream of ALL pages in Amphora with prefix. These objects look like:

{
  pageRef: string,
  pageData: object
}

The pageData value is the page data not composed, i.e. it includes top-level component references but no component data.

Filter Streams

Filters are functions that remove pages from the stream.

sitemaps.filters.publicFilter()

Returns a transform function that keeps only public pages from a pages stream.

sitemaps.filters.publishedFilter()

Returns a transform function that keeps only published pages from a pages stream.

Transform Streams

Transforms are functions that modify a stream of pages or strings.

sitemaps.transforms.pages.toText()

Returns a transform function that converts a stream of pages to a stream of strings reflecting the URL of each page.

sitemaps.transforms.pages.toXML(locals, multiplex)

Returns a transform function that converts a stream of pages to a stream of XML including the URL of each page and rendered sitemap templates of all components on each page.

sitemaps.transforms.pages.compose(locals)

Returns a transform function that composes the pageData property in each item in a stream of pages so it includes all component data on that page.

sitemaps.transforms.strings.addBookends(prelude, postlude)

Returns a transform function that adds strings to the beginning and/or end of a stream of strings.