achim-slug

1.0.4 • Public • Published

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))
}

Dependents (0)

Package Sidebar

Install

npm i achim-slug

Weekly Downloads

0

Version

1.0.4

License

MIT

Last publish

Collaborators

  • achimbaggins