Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ernitingarg/spell-checker-reactjs
https://github.com/ernitingarg/spell-checker-reactjs
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ernitingarg/spell-checker-reactjs
- Owner: ernitingarg
- Created: 2022-06-19T05:59:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-10T14:30:50.000Z (about 2 years ago)
- Last Synced: 2023-10-21T13:23:10.646Z (about 1 year ago)
- Language: JavaScript
- Homepage: spell-checker-fawn.vercel.app
- Size: 942 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Overview
Spell-checker is a simple application which has mainly 2 components:
- Frontend UI application written in `ReactJs`. Here is the [URL](https://spell-checker-ui.vercel.app/).
- Backend API written in `javascript`. Here is the [URl](https://spell-checker-backend.vercel.app/checkwords).### Frontend
For this application to use, please enter any sentense and this application shows all words which are `NOT` English words.
![Wrong](./images/wrong.png)
![Correct](./images/correct.png)
### Backend API
If you prefer to test backend api, please follow below steps.
- Format of backend api is: https://spell-checker-backend.vercel.app/checkwords/
- The response of this API displays Non-English characters in JSON format.
- Below are few examples:
- https://spell-checker-backend.vercel.app/checkwords/Xyz => Xyz
- https://spell-checker-backend.vercel.app/checkwords/xyz => xyz
- https://spell-checker-backend.vercel.app/checkwords/XYZ => XYZ
- https://spell-checker-backend.vercel.app/checkwords/xYz => xYz
- https://spell-checker-backend.vercel.app/checkwords/xYZ => xYZ
- https://spell-checker-backend.vercel.app/checkwords/xyz|dog => xyz
- https://spell-checker-backend.vercel.app/checkwords/xyz|DOG => xyz
- https://spell-checker-backend.vercel.app/checkwords/xyz| |DOG => xyz
- https://spell-checker-backend.vercel.app/checkwords/xyz|DOG|ABCD => xyz, ABCD### Run locally
To run locally, In visual studio code, go to the sub folder (backend or frotnend) and run `npm run start` :
- Frontend: http://localhost:3000/
- Backend: http://127.0.0.1:8080/checkwords/xyz