Lib em node para fazer slug de textos
URL: https://www.npmjs.com/package/slugify
Instalação
npm i --save slugifyExemplo
var slugify = require('slugify')
 
slugify('some string') // some-string
 
// if you prefer something other than '-' as separator
slugify('some string', '_')  // some_string
[]()
slugify('some String', { lower: true })  // some-string