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

@art-design-digital/payload-plugin-seo

v1.6.2

Published

A Payload plugin for SEO. This plugin adds SEO fields to your collections and documents. It also provides a helper function to generate meta tags for your site.

Downloads

9

Readme

Payload SEO-Plugin

This plugin implements some important SEO features for PayloadCMS.

It adds desired collections and globals fields that can be filled to provide various SEO metadata. It also supports editors in maintaining SEO data by requiring some fields as mandatory data and generating previews for the search results.

Fields and functions in detail

Preview

This field automatically generates a preview of how this page may appear in search results from the data provided. It has an option to switch between mobile and desktop previews. So the editor can see how the result looks for both breakpoints.

Screenshot Preview mobile Screenshot Preview

Title

Screenshot Title

Description

Screenshot Description

Picture

Screenshot Picture

Allow indexing

Screenshot Indexing

Allow following links

Screenshot Following

Additional Robots tags

Screenshot Robots

Change frequency

Screenshot Frequency

Priority

Screenshot Priority

Installation and usage of the plugin

Installation

The plugin is an official npm library that can be installed via

npm install @art-design-digital/payload-plugin-seo

or via

yarn add @art-design-digital/payload-plugin-seo

Usage

The plugin is a plugin for PayloadCMS and so it can be installed by adding it to the plugins array in the payload.config.ts

The plugin works by adding no parameters (even no empty object) but it is disabled in using it this way. You have to set at least the props object with the enabled property to enable it.

plugins: [
  seoPlugin({
    enabled: true
  })
]

Here is the list of all available parameters that can be set in the plugin.

| Name | Description | Type | Default | |-|-|-|-| | enabled | Switches the whole plugin on or off. | boolean | false | | collections | Array of slugs that defines in which collections the plugin shall be used. | string[] | [] | | globals | Array of slugs that defines in which globals the plugin shall be used. | string[] | [] | | mediaCollection | Tell the plugin which collection shall be used for uploading a photo for a team member. | string | 'media' | | generateSEOTitleFrom | Define the field from which the SEO-Title shall be generated from when clicking on Save. | string | '' | | insertBefore | Define on which position the field should be rendered in a specific global or collection. If nothing is set here the fields are appended. | {collections: [{slug: string, field: string}], globals: [{slug: string, field: string}]} | {} |

In this example you can see a full working configuration for a demo project.

seoPlugin({
  enabled: true,
  collections: ['examples', 'some-collection'],
  globals: ['demo-global'],
  mediaCollection: 'media',
  generateSEOTitleFrom: 'someField',
  insertBefore: {
    globals: [
      {
        slug: 'demo-global',
        field: 'description',
      },
    ],
    collections: [
      {
        slug: 'examples',
        field: 'anotherField',
      },
      {
        slug: 'some-collection',
        field: 'niceField',
      },
    ],
  },
})

TODO's

  • [x] Custom position of the seo fields
  • [x] Add meta fields for robots.txt and headers
  • [ ] Translations
  • [ ] Choose if seo fields are rendered in tabs or as collapsible
  • [ ] Precise field choice for the generateTitleFrom function
  • [ ] Add static appended parts of the SEO-Title if set and include this in calculating the length indicator

Questions

Please contact art&design digital with any questions about using this plugin.