任意の言葉を入力すると、ランダムで肯定形・否定形を返す。
- ex. 「ねむい」 → 「ねむい」 or 「ねむくない」
q
: The words that executed on loadforce
: Force parsing into negative form
- Set
homepage
inpackage.json
- Use
gh-pages
:$ npm run deploy
(npm run build && gh-pages -d build
) - In development, set
PUBLIC_URL
environment variable to overridehomepage
value
# `git clone` this repository, then `cd` the directory.
$ npm install
$ npm run cli 'ねむい'
# --> ねむい or ねむくない
# To force parsing into negative form, Set `--force` as the first argument.
$ npm run cli -- --force 'ねむい'
# --> ねむくない
Based on nemui-gacha made with Python and MeCab.
- Library : TypeScript, kuromoji.js
- Web App : React.js (Create React App) with TypeScript and SCSS
- CLI : TypeScript, ts-node
If you have a bug or a feature request, Please open a new issue.