This application serves as a virtual bookshelf, allowing users to search for books and manage their reading lists. Users can categorize books into different shelves like "Currently Reading," "Want to Read," and "Read."
For a full video walkthrough of this project, click here.
While many React projects are bootstrapped with create-react-app
, this one utilizes Vite.js for a faster and more optimized build. However, the familiar npm start
command is still used for launching the app.
Make sure you have Node.js and npm installed on your computer. If not, you can download and install them from the official Node.js website.
Clone the Repository
git clone https://github.com/shahzada-shah/myreads.git
Navigate to the project folder
cd myreads
Install Dependencies
npm install
Start the Application
npm start
After running the npm start
command, your default web browser should open displaying the app. If it doesn't, navigate to http://localhost:3000/
in your web browser.