Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
cn.yimian.xyz 482ca54e2b fy il y a 3 ans
src fix_blocked il y a 3 ans
.gitignore add server il y a 4 ans
Dockerfile docker il y a 4 ans
LICENSE Initial commit il y a 4 ans
README.md Update README.md il y a 4 ans
fy.js fy il y a 3 ans
mksec fix bugs cil il y a 4 ans
package.json v2.5.1 il y a 4 ans
pm2.json docker il y a 4 ans
yarn.lock add server il y a 4 ans

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