2.5.1 • Published 5 years ago
mksec v2.5.1
sentence-generator
Quick Start
cli tools
$ npm i -g mksecUse in your project
$ npm i mkseccli
Generate sentences by word
$ mksec g [word]Generate one sentence by word
$ mksec o [word]Generate sentences by word list file
$ mksec f [file]Use as lib
const mksec = require('mksec');
(async ()=>{
console.log(await mksec({
word: 'Your word',
//url: 'optional api url'
}));
})()