🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

node-slugify

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-slugify

Simple and useful function for generating friendly url/slug.

0.0.3
latest
Source
npm
Version published
Weekly downloads
46
35.29%
Maintainers
1
Weekly downloads
 
Created
Source

node-slugify

Build Status Coverage Status

A simple function which generates friendly url or slugs from string input.

Installing

npm i --save node-slugify

Usage

var slugify = require('node-slugify');

console.log(slugify('why is india a great country'));
// returns 'why-is-india-a-great-country'

console.log(slugify('Why is INDIA a great country', { maintainCase: true} ));
// returns 'Why-is-INDIA-a-great-country'

console.log(slugify('why is india a great country'), { replacement: '_'});
// returns 'why_is_india_a_great_country'

Tests

Run npm test

Keywords

utils

FAQs

Package last updated on 25 Mar 2017

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