Skip to content

Latest commit

 

History

History

Create-Read-React-Frontend-Backend-Communication

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

React Movie Tracker (Firebase Backend)

I developed this project without the help of an instructor.

A react app to GET and POST requests, connecting to databse(firebase)

Features

  • Add movie description to database
  • Retrieve Data from the database
  • Frontend-Backend Communication

Getting Started

To get started, clone the repository and install the dependencies:

git clone https://github.com/muhib7353/React-js-Blogs-and-Projects.git
cd Projects
cd Create-Read-React-Frontend-Backend-Communication
npm install

Then, you can start the development server with the following command:

npm start

This will start the development server and open the app in your default web browser. The app will automatically reload whenever you make changes to the code.

For Production

npm run build creates a build directory with a production build of your app. Set up your favorite HTTP server so that a visitor to your site is served index.html, and requests to static paths like /static/js/main..js are served with the contents of the /static/js/main..js file. For more information see the production build section.

For environments using Node, the easiest way to handle this would be to install serve and let it handle the rest

npm install -g serve
serve -s build