Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@igeek/core

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@igeek/core

Core package to check compatibility

  • 1.2.5
  • npm
  • Socket score

Version published
Weekly downloads
181
Maintainers
0
Weekly downloads
 
Created
Source

A simple TypeScript package for generating slugs. This package provides features like:

  • Genrate Random slug
  • Generate random slug form a user provided custom wordSet
  • Convert sentence to slug (Slugify)
  • Generate Complex AlphaNum like Coupons

Installation

To install the package, run:

npm install slugmaster

Usage

1. Generate Slug from random set of Words (generateSlug)

import { generateSlug } from 'slugmaster';
const slug = generateSlug({
  wordCount: 3
});
const customWordSlug = generateSlug({
  wordCount: 4,                        
  wordSet: ["tech", "code", "learn", "build", "scale", "launch"], 
});

2. Generate slug from a sentence (slugify)

import { slugify } from 'slugmaster';

const sentenceSlug = slugify("A blog title! to be converted to slug.");
// output: a-blog-title-to-be-converted-to-slug

OR

const sentenceSlug = slugify("A blog title! to be converted to SLUG.", {
  lowercase: false,            // if you opt to keep letters as it is (default: true)           
});
// output: A-blog-title-to-be-converted-to-SLUG

3. Generate Coupon codes

import { generateCouponCode } from 'slugmaster';
const couponCode = generateCouponCode({
  length: 10,
  prefix: 'SAVE',
  type: 'alphanumeric',
  includeLowercase: true,
  includeSymbols: false
});

Options

For Slug Generation

  • wordCount: Number of words in the slug (default: 3)
  • randomStringLength: Length of the random string to append (default: 0)

Custom Word Set Options (for generateSlug)

  • wordSet: Array of custom words for slug generation
  • wordCount: Number of words in the slug (default: 3)
  • randomStringLength: Length of random string appended to slug (default: 0)

Slugify Options

  • lowercase: Convert text to lowercase (default: true)
  • trim: Trim whitespace from the start and end of the text (default: true)
  • replaceSpaces: Replace spaces with dashes (default: true)
  • removeNonWordChars: Remove non-word characters (default: true)
  • replaceMultipleDashes: Replace multiple dashes with a single dash (default: true)
  • trimDashes: Trim dashes from the start and end of the text (default: true)

For Coupon Code

  • length: Length of the coupon code (default: 6)
  • type: Character types (alpha, alphanumeric, numeric)
  • prefix: Prefix for the coupon code (default: 'CP')
  • includeLowercase: Include lowercase letters (default: false)
  • includeSymbols: Include special characters (default: false)

FAQs

Package last updated on 18 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc