lkathke / gibb

Gibberish detection webservice based on Markov chain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dockerized

This is a dockerized webservice based on Kirill89 Gibberish-Detector nodejs library. https://github.com/Kirill89/gibb

Getting started

git clone https://github.com/lkathke/gibb.git
cd gibb
docker build -t lkathke/gibb .
docker run -d --name gibberish-service -p 3000:3000 lkathke/gibb

Example output:

http://localhost:3000/Test

{
"text": "Test",
"isGibberish": false
}

http://localhost:3000/asd

{
"text": "asd",
"isGibberish": true
}

License

See LICENSE.md file.

About

Gibberish detection webservice based on Markov chain

License:MIT License


Languages

Language:JavaScript 98.7%Language:Dockerfile 1.3%