achim-slug
v1.0.4
Published
you can use this to convert your article title into simple unique slug
Downloads
4
Readme
How to use
This package designed to help you to create simple slug, this tool converting your article title into readable slug and the number before your slug is get from minutes and seconds of new Date().
Install
>> npm i -S achim-slug
Example
at your Controllers
const newSlug = require('achim-slug');
var createData = (req, res) => {
var myslug = newSlug(`${req.body.title}`)
Thread.create({
title: req.body.title,
konten: req.body.konten,
slug: myslug,
author: req.body.author
})
.then(result => res.send(result))
.catch(err => res.send(err))
}