1
0
Derivar 0
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
cn.yimian.xyz 482ca54e2b fy há 3 anos
src fix_blocked há 3 anos
.gitignore add server há 4 anos
Dockerfile docker há 4 anos
LICENSE Initial commit há 4 anos
README.md Update README.md há 4 anos
fy.js fy há 3 anos
mksec fix bugs cil há 4 anos
package.json v2.5.1 há 4 anos
pm2.json docker há 4 anos
yarn.lock add server há 4 anos

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