A project written in ReactJS that allows you to manage orders in a company./ The user interface has the ability to create orders, as well as view a list of all orders with the ability to load data from the database.
The project uses the following technologies: ReactJS, React-router, NodeJS, ExpressJS , MySQL
The project is divided into 2 parts: Front-End and Back-end. They work separately and, if you wish, you can change one of the parts to your own, adhering to the settings
In both parts you need to install modules
npm i
Later in the index.js file in the server folder, you need to configure the connection to the database
const conn = mysql.createConnection({
// DB connecting here
host: "localhost",
user: "root",
database: "users",
password: "root"
});The MySQL database is used here, an example database with a valid structure is located in the server folder in the db.sql file
And then run them separately
npm start





