You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
cn.yimian.xyz 482ca54e2b fy преди 3 години
src fix_blocked преди 3 години
.gitignore add server преди 4 години
Dockerfile docker преди 4 години
LICENSE Initial commit преди 4 години
README.md Update README.md преди 4 години
fy.js fy преди 3 години
mksec fix bugs cil преди 4 години
package.json v2.5.1 преди 4 години
pm2.json docker преди 4 години
yarn.lock add server преди 4 години

README.md

sentence-generator

Quick Start

cli tools

$ npm i -g mksec

Use in your project

$ npm i mksec

cli

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'
  }));
})()