25개 이상의 토픽을 선택하실 수 없습니다. 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'
  }));
})()