An open API service indexing awesome lists of open source software.

https://github.com/cudi7/javascript_book-finder

Book Finder App using JavaScript, Bootstrap and Google API
https://github.com/cudi7/javascript_book-finder

bootstrap googleapibook javascript

Last synced: 3 months ago
JSON representation

Book Finder App using JavaScript, Bootstrap and Google API

Awesome Lists containing this project

README

          

# Book finder app build with JavaScript

# Live demo

> https://elegant-snyder-b68cc7.netlify.app

![Design preview for the coding challenge](./Screenshot_1.jpg)

## Table of contents

- [General info](#general-info)
- [Code Examples](#code-examples)
- [Features](#features)
- [Contact](#contact)

## General info

Project idea from freecodecamp:

https://www.freecodecamp.org/news/here-are-some-app-ideas-you-can-build-to-level-up-your-coding-skills-39618291f672/

- Responsive, build with Bootstrap.

## Code Examples

./js/script.js

```
function displayData(data) {
if (!data.items) return displayError('No results found.');

const booksContainer = document.querySelector('.books-container');

spinner('hide');

booksContainer.innerHTML = '';

data.items.forEach((el) => {
booksContainer.innerHTML += `




${formatText(el.volumeInfo.description)}




Published: ${
el.volumeInfo.publishedDate
}





`;
});
}
```

## Features

You can:

- Search a book for Title or Author

## Technology used

The project is created with:

- JavaScript

## Contact

Coded by Cudi - feel free to contact me!