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

gatsby-plugin-slug-field

v5.0.1

Published

Create a slug field in nodes using data from other fields

Downloads

217

Readme

gatsby-plugin-slug-field npm

Create a slug field in nodes using data from their other fields.

Installation

npm install gatsby-plugin-slug-field

Usage

/* gatsby-config.js */

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-plugin-slug-field',
      options: {
        /* gatsby-plugin-slug-field options here */
      }
    }
  ]
}

The nodeType option must be set to enable the plugin. A slug field will be added to node types matching this option, and the slug will be generated using the data from baseField option.

Example

Using the following options:

/* gatsby-config.js */

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-plugin-slug-field',
      options: {
        baseField: ['author', 'title', 'id'],
        fieldName: 'postSlug',
        nodeType: 'PostsYaml',
        urlSlug: {
          separator: '_'
        }
      },
    }
  ],
}

The query:

query {
  allPostsYaml {
    nodes {
      id
      title
      author
      postSlug
    }
  }
}

Will return:

{
  data: {
    allPostsYaml: {
      nodes: {
        id: 1234,
        title: 'Blog Post Title',
        author: undefined,
        postSlug: 'blog_post_title_1234'
      }
    }
  }
}

Options

baseField

Type: string, Array or function.

Defines the fields used to generate the slug. If set to a string or an Array, the matching fields will be used to generate the slug — if a field is null or undefined, it will be included as an empty string. For more complex use cases, a function is also accepted. It will receive the current node as the only parameter (e.g. node => node.field + '-slug') and must return a string — which will be used by url-slug to generate the slug.

fieldName

Type: string. Default: 'slug'.

The field name to store the generated slug. If the source node already has a field with the same name, its value will be passed to url-slug, and the baseField option will be ignored for that node.

nodeType

Type: string, Array or false. Default: false.

Filter which node types will be processed. It can be a single node type (e.g. 'PostsYaml'), or an array of node types (e.g. ['AuthorsYaml', 'PostsYaml']). Set it to false to disable the plugin.

uniqueSlugs

Type: boolean. Default: false.

If this option is set to true, a numerical suffix will be added to duplicated slugs.

Caveat: the numerical suffix can change during development or between production builds.

urlSlug

Type: Object. Default: {}.

url-slug options, more info can be found here.

License

The MIT License