React JS
https://create-react-app.dev/
Create Project
C:\react-js>npx create-react-app my-app
Run
C:\react-js\my-app> npm start
C:\react-js\my-app\src\App.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | //app\src\App.js import { BrowserRouter, Routes, Route } from "react-router-dom" ; import Navbar from "./components/navbar" ; import Login from "./components/login" ; import SignUp from "./components/signup" ; function App() { return ( <div className= "app" > <Navbar/> <BrowserRouter> <Routes> <Route path= "/login" element={<Login />} /> <Route path= "/signup" element={<SignUp />} /> </Routes> </BrowserRouter> </div> ); } export default App; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | //C:\react-js\my-app\src\components\navbar.js import React, { } from "react" ; const Navbar = () => { return ( <nav className= "navbar navbar-expand-lg navbar-light bg-light" > <div className= "container" > <a className= "navbar-brand" href= "#" >Cairocoders</a> <button className= "navbar-toggler" type= "button" data-bs-toggle= "collapse" data-bs-target= "#navbarSupportedContent" aria-controls= "navbarSupportedContent" aria-expanded= "false" aria-label= "Toggle navigation" > <span className= "navbar-toggler-icon" /> </button> <div className= "collapse navbar-collapse" id= "navbarSupportedContent" > <ul className= "navbar-nav me-auto mb-2 mb-lg-0" > <li className= "nav-item" > <a className= "nav-link active" aria-current= "page" href= "#" >Home</a> </li> <li className= "nav-item" > <a className= "nav-link" href= "#" >Link</a> </li> </ul> <div className= "d-flex" > <a className= "btn btn-outline-primary" href= "signup" >Sign Up</a> </div> </div> </div> </nav> ); }; export default Navbar; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | //C:\react-js\my-app\src\components\login.js import React, {useState} from "react" ; import Axios from "axios" ; import loginimg from './login.jpg' ; const Login = () => { const [email, setEmail] = useState( "" ); const [password, setPassword] = useState( "" ); const [loginStatus, setLoginStatus] = useState( "" ); const login = (e) => { e.preventDefault(); email: email, password: password, }).then((response) => { if (response.data.message){ setLoginStatus(response.data.message); } else { setLoginStatus(response.data[0].email); } }) } return ( <div className= "container" style={{paddingTop: 60}}> <div className= "container-fluid h-custom" > <div className= "row d-flex justify-content-center align-items-center h-100" > <div className= "col-md-9 col-lg-6 col-xl-5" > <img src={loginimg} className= "img-fluid" /> </div> <div className= "col-md-8 col-lg-6 col-xl-4 offset-xl-1" > <form> <div className= "d-flex flex-row align-items-center justify-content-center justify-content-lg-start" > <p className= "lead fw-normal mb-0 me-3" >Login to your account</p> </div> <p> <h1 style={{color: 'red' , fontSize: '15px' , textAlign: 'center' , marginTop: '20px' }}>{loginStatus}</h1> </p> <div className= "form-outline mb-4" > <input type= "email" className= "form-control form-control-lg" placeholder= "Enter a valid email address" onChange={(e) => {setEmail(e.target.value)}} placeholder= "Enter your Email" required /> <label className= "form-label" >Email address</label> </div> <div className= "form-outline mb-3" > <input type= "password" className= "form-control form-control-lg" placeholder= "Enter password" onChange={(e) => {setPassword(e.target.value)}} placeholder= "Enter your Password" required /> <label className= "form-label" >Password</label> </div> <div className= "d-flex justify-content-between align-items-center" > <div className= "form-check mb-0" > <input className= "form-check-input me-2" type= "checkbox" value= "" /> <label className= "form-check-label" > Remember me </label> </div> <a href= "#" className= "text-body" >Forgot password?</a> </div> <div className= "text-center text-lg-start mt-4 pt-2" > <button type= "button" className= "btn btn-primary btn-lg" onClick={login}>Login</button> <p className= "small fw-bold mt-2 pt-1 mb-0" >Login to your account <a href= "signup" className= "link-danger" >Sign Up</a></p> </div> </form> </div> </div> </div> </div> ); }; export default Login; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | //C:\react-js\my-app\src\components\signup.js import { useState } from "react" ; import Axios from "axios" ; const SignUp = () => { const [email, setEmail] = useState( "" ); const [name, setName] = useState( "" ); const [password, setPassword] = useState( "" ); const [registerStatus, setRegisterStatus] = useState( "" ); const register = (e) => { e.preventDefault(); email: email, name: name, password: password, }).then((response) => { // setRegisterStatus(response); console.log(response); if (response.data.message){ setRegisterStatus(response.data.message); } else { setRegisterStatus( "ACCOUNT CREATED SUCCESSFULLY" ); } }) } let imgs = [ ]; return ( <div className= "container" style={{paddingTop: 60}}> <div className= "container-fluid h-custom" > <div className= "row d-flex justify-content-center align-items-center h-100" > <div className= "col-md-8 col-lg-6 col-xl-4 offset-xl-1" > <form> <div className= "d-flex flex-row align-items-center justify-content-center justify-content-lg-start" > <p className= "lead fw-normal mb-0 me-3" >Create Your Account</p> </div> <p> <h1 style={{fontSize: '15px' , textAlign: 'center' , marginTop: '20px' }}>{registerStatus}</h1> </p> <div className= "form-outline mb-4" > <input type= "text" className= "form-control form-control-lg" placeholder= "Enter Name" onChange={(e) => {setName(e.target.value)}} placeholder= "Enter your Name" required /> <label className= "form-label" >Name</label> </div> <div className= "form-outline mb-4" > <input type= "email" className= "form-control form-control-lg" onChange={(e) => {setEmail(e.target.value)}} placeholder= "Enter your Email Address" required /> <label className= "form-label" >Email address</label> </div> <div className= "form-outline mb-3" > <input type= "password" className= "form-control form-control-lg" onChange={(e) => {setPassword(e.target.value)}} placeholder= "Enter your Password" required /> <label className= "form-label" >Password</label> </div> <div className= "d-flex justify-content-between align-items-center" > <div className= "form-check mb-0" > <input className= "form-check-input me-2" type= "checkbox" value= "" /> <label className= "form-check-label" > Remember me </label> </div> <a href= "#" className= "text-body" >Forgot password?</a> </div> <div className= "text-center text-lg-start mt-4 pt-2" > <button type= "button" className= "btn btn-primary btn-lg" onClick={register}>Sign Up</button> <p className= "small fw-bold mt-2 pt-1 mb-0" >Login to your account <a href= "login" className= "link-danger" >Login</a></p> </div> </form> </div> <div className= "col-md-9 col-lg-6 col-xl-5" > <img src={imgs[0]} className= "img-fluid" /> </div> </div> </div> </div> ); }; export default SignUp; |
https://github.com/axios/axios
Installing the Axios Client
$ npm install axios
C:\reactdev\myreactdev>npm install axios
Install React Router Dom
https://www.npmjs.com/package/react-router-dom
C:\react-js\myreactdev>npm i react-router-dom --save
react-js\my-app\public\index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | //react-js\my-app\public\index.html <!DOCTYPE html> <html lang= "en" > <head> <meta charset= "utf-8" /> <link rel= "icon" href= "%PUBLIC_URL%/favicon.ico" /> <meta name= "viewport" content= "width=device-width, initial-scale=1" /> <meta name= "theme-color" content= "#000000" /> <meta name= "description" content= "Web site created using create-react-app" /> <link rel= "apple-touch-icon" href= "%PUBLIC_URL%/logo192.png" /> <link rel= "manifest" href= "%PUBLIC_URL%/manifest.json" /> <title>React App</title> <link rel= "stylesheet" href= "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" > </head> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id= "root" ></div> </body> </html> |
http://localhost:3000/
https://expressjs.com/
Express JS
Fast, unopinionated, minimalist web framework for Node.js
Install
$ npm install express --save
PS C:\nodeproject> npm install express --save
https://expressjs.com/en/starter/hello-world.html
run PS C:\nodeproject> node index.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | //C:\nodeproject> node index.j const express = require ( "express" ); const mysql = require ( "mysql" ); const cors = require ( "cors" ); const app = express(); const port = 3001 app. use (express.json()); app. use (cors()); const con = mysql.createConnection({ user: "root" , host: "localhost" , password: "" , database: "nodejsdb" }) app.post( '/register' , (req, res) => { const email = req.body.email; const name = req.body.name; const password = req.body.password; con.query( "INSERT INTO users (email, name, password) VALUES (?, ?, ?)" , [email, name, password], (err, result) => { if (result){ res.send(result); } else { res.send({message: "ENTER CORRECT DETAILS!" }) } } ) }) app.post( "/login" , (req, res) => { const email = req.body.email; const password = req.body.password; con.query( "SELECT * FROM users WHERE email = ? AND password = ?" , [email, password], (err, result) => { if (err){ req.setEncoding({err: err}); } else { if (result.length > 0){ res.send(result); } else { res.send({message: "WRONG Email OR PASSWORD!" }) } } } ) }) app.listen(port, () => { console.log(`Example app listening on port ${port}`) }) |
mysql
https://github.com/mysqljs/mysql
$ npm install mysql
PS C:\nodeproject>npm install mysql
cors
CORS is a node.js package for providing a Connect/Express middleware that can be used to enable CORS with various options.
https://www.npmjs.com/package/cors
PS C:\nodeproject>npm i cors