1.0.3 • Published 10 months ago

@codeberry/slugger v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Slugger - Strapi Plugin

šŸš€ Slugger is a Strapi plugin that automatically generates SEO-friendly slugs for your content entries based on specified fields.

āœ… Compatible with Strapi v5.10.2 and above


✨ Features

  • āœ… Automatic slug generation on beforeCreate and beforeUpdate events
  • āœ… Per collection type configuration to specify source and slug fields
  • āœ… Ensures unique slugs within a collection to avoid duplicates
  • āœ… Custom slug field for each collection type

šŸ“¦ Installation

Via npm:

npm install @codeberry/slugger

Via yarn:

yarn add @codeberry/slugger

āš™ļø Configuration

To configure Slugger, modify your config/plugins.ts file:

export default {
  slugger: {
    enabled: true,
    config: {
      slugConfig: {
        article: { sourceField: "title", slugField: "slug" },
      },
    },
  },
};

Configuration Breakdown:

  • article → The collection type where slug generation should be applied
  • sourceField: "title" → Field from which the slug is generated
  • slugField: "slug" → Field where the generated slug is stored

šŸ”§ Adding the Slug Field to Your Collection

This plugin does not automatically add the slug field. You need to manually add it using the Strapi Admin Panel:

Steps to Add the Slug Field:

  1. Go to Strapi Admin Panel → Content-Type Builder
  2. Open the collection type where you want to generate slugs (e.g., article)
  3. Click "Add another field"
  4. Navigate to the Custom Fields tab
  5. Select the field named "Slug"
  6. Enter a name for the field (e.g., slugHere or slug)
    • This name must match the slugField value in your plugin configuration
  7. Save and apply the changes

Now, the plugin will store the generated slugs in this field automatically.


šŸ›  Usage

Once configured, the plugin will automatically generate slugs before an entry is created or updated.

  • If an entry in article has a title, it will generate a slug from it.
  • If a slug already exists, a unique version will be created (e.g., my-title, my-title-1).

šŸ“Œ Example Behavior

TitleGenerated Slug
"Hello World"hello-world
"Hello World" (duplicate)hello-world-1
"Strapi is Awesome!"strapi-is-awesome

šŸ” Ensuring Slug Uniqueness

Slugs are made unique within the collection type by appending an incremental counter if necessary.


šŸ“ Notes

  • This plugin does not modify existing slugs unless the sourceField is updated.
  • Ensure the slug field is added using the Custom Fields tab in Strapi Admin.
  • The slug field name must match what is set in slugField inside the plugin configuration.

šŸ¤ Contributing

Want to contribute? Feel free to fork the repository, open issues, or submit PRs! šŸš€


šŸ“„ License

This project is licensed under the MIT License.


šŸŽ‰ Now you're all set! Happy slugging! šŸš€