Skip to content

Java maven package to help you generate random slug words

License

Notifications You must be signed in to change notification settings

subrotokumar/slug-smith

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Slug Smith

A handy utility to generate random word slugs (e.g., brainy-fancy-country) for your projects.


Installation

Maven

Add the following dependency to your pom.xml file:

<dependency>
  <groupId>dev.subrotokumar</groupId>
  <artifactId>slug-smith</artifactId>
  <version>1.0.0</version>
</dependency>

Gradle

Add the following dependency to your build.gradle file:

dependencies {
    implementation 'dev.subrotokumar:slug-smith:1.0.0' // Replace with the latest version
}

Usage

The slug-smith package provides a simple API to generate random slugs. Here's how you can use it:

import dev.subrotokumar.slugsmith;

public class Main {
    public static void main(String[] args) {
        String slug = SlugSmith.generateSlug();
        System.out.println(slug);
        // Example output: "deafening-damp-cartoon"
    }
}

Contributing

Contributions are welcome! If you have any ideas, suggestions, or bug reports, please open an issue or submit a pull request on GitHub.


License

This project is licensed under the MIT License - see the LICENSE file for details.


About

Java maven package to help you generate random slug words

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages