Simple Google Chrome app clone, mobile first design, coded as a JavaScript practise using Wikipedia API.
Following my desire to clone popular websites or features, I started with something easy that only required to use an API and some basic design. The coding and design took me around 2-4 hours.
To run this project, downloaded and open it 😎
async function handleSearch(currentText){
const searchString = getSearchString(currentText);
const rawData = await fetchData(searchString);
return selectData(rawData);
}
The project is created with:
- Wikipedia API
- Plain JavaScript
- HTML with BEM notation
- SCSS
The idea was taken from https://www.youtube.com/watch?v=Dk6Wopar10k&t=4026s
Created by Cudi - feel free to contact me!