Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
cn.yimian.xyz 482ca54e2b fy 3 anni fa
src fix_blocked 3 anni fa
.gitignore add server 4 anni fa
Dockerfile docker 4 anni fa
LICENSE Initial commit 4 anni fa
README.md Update README.md 4 anni fa
fy.js fy 3 anni fa
mksec fix bugs cil 4 anni fa
package.json v2.5.1 4 anni fa
pm2.json docker 4 anni fa
yarn.lock add server 4 anni fa

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