Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
cn.yimian.xyz 482ca54e2b fy 3 lat temu
src fix_blocked 3 lat temu
.gitignore add server 4 lat temu
Dockerfile docker 4 lat temu
LICENSE Initial commit 4 lat temu
README.md Update README.md 4 lat temu
fy.js fy 3 lat temu
mksec fix bugs cil 4 lat temu
package.json v2.5.1 4 lat temu
pm2.json docker 4 lat temu
yarn.lock add server 4 lat temu

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