- Over 30,000 words!
- Search by word and get all its definitions in the different parts of speech.
- Search by word and part of speech desired.
- Receiving a random word in a particular part of speech.
- By clicking on any of the words you can switch to the definition of the same word!
- Mobile first design!
- Nice loader.
- Error handling to fail request.
"BASE_URL/"
- For home page
"BASE_URL/word/:word"
- For the result of a word search - All Parts Of Speech
"BASE_URL/part-of-speech/:part"
- Receiving a random word in a specific parts of speech
Your about to build an english dictionary app
- FRONTEND:
- build a
create-react-app
english dictionary app (mobile first) - URL routes:
-
/:word
- dynamic route -word
is dynamic URL parameter, used to request backend api -
/:word/:partOfSpeech
- dynamic route -word
is dynamic URL parameter, used to request backend api -
/part-of-speech/:part
-part
is enum URL parameter, used to request backend api
-
- each word in dictionary is clickable and will redirect to a common URL
- BONUS should be deployed to
S3 bucket
- build a