An open API service indexing awesome lists of open source software.

https://github.com/gkhan205/slugifyme

A light weight library to create slugs with ease. Compatible with Browser and Node
https://github.com/gkhan205/slugifyme

formatter javascript make-in-india slugify slugs url

Last synced: 6 months ago
JSON representation

A light weight library to create slugs with ease. Compatible with Browser and Node

Awesome Lists containing this project

README

          

# Slugifyme

A light weight library to create slugs with ease. Compatible with Browser and Node

## Usage

```js
import { slugifyme } from "slugifyme";

slugifyme("Create a Slug for me.");
// returns `create-a-slug-for-me`
```

```js
const slugifyme = require("slugifyme");

slugifyme.slugifyme("Create a Slug for me.");
// returns `create-a-slug-for-me`
```

## Demo

Browser Demo (JS, React, Angular, Vue, etc)\
[![Edit slugifyme-browser-demo](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/slugifyme-demo-fik2x?fontsize=14&hidenavigation=1&theme=dark)

NodeJS Demo\
[![Edit slugifyme-node-demo](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/gallant-hodgkin-vzql1?fontsize=14&hidenavigation=1&theme=dark)

---

[Author](https://codewithghazi.com)