Sentiment analysis represented by a single emoji
Pass the text you wish to analyze as a path to your endpoint. For example, a valid
request to the demo could look like
https://emoji-summary.herokuapp.com/hello world
.
npm i
npm run dev
npm i
npm run build
npm start
docker build --tag sentimoji:1.0 .
docker run -p 1234:1234 -d --name sentimoji sentimoji:1.0
This project is open to and encourages contributions! Feel free to discuss any bug fixes/features in the issues. If you wish to work on this project:
- Fork this project
- Create a branch (
git checkout -b new-branch
) - Commit your changes (
git commit -am 'add new feature'
) - Push to the branch (
git push origin new-branch
) - Submit a pull request!