選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
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'
  }));
})()