Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 766 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 766 Bytes

Wordly

A RESTful word finding service powered by Datamuse API.

See live project

Tech Stack

  • HTML
  • CSS
  • JavaScript ES6+

Features

  • Autocomplete
  • Responsive UI
  • Find word meaning (Soon)
  • Progressive web app (Soon)

Technical Details

Below are some of the design decision that were made while making this application.

  • The app uses JavaScript async-await to make API calls asynchronously which helps preventing the blocking of main thread to execute any user initiated events such as clicking the search button which makes the UI more responsive towards user initiated events.
  • API throttling and debouncing has been implemented to avoid excessive and unnecessary calls to the API.