A simple full stack application which computes and displays the fibonacci sequence
The front end communicates with the backend API, which is powered by Express and stores data in a Relational database.
- The front has two pages. The first page has an input box and a button where the user is prompted to type the fibonacci sequence's length
- The second page displays the requested fibonacci sequence seperated by commas with a provison to return back to the previous page
- Frontend: React, HTML, CSS, JavaScript
- Backend: Express.js, Node.js
- Database: MySQL
Developed the system in develop branch and merged into the main branch
Latest working code is available in main branch
git clone https://github.com/ramyaram2092/fibonacci-generator.git
cd fibonacci-generator
cd client
npm install
cd ../server
npm install
Download mysql database update the .env file in the server/.env folder with your credentials.
Note : The application takes care of creating database and table. Only the mysql crendtails like the username and password is needed
mysql server runs at port 3306
cd server
npm start / npm run dev
express server runs at http://localhost :8080
cd client
npm start
The client will open at http://localhost :3000