June 2023 Javascript Stack
- Clone the repo to your computer.
- Pull the repo when you want to get the latest update of the code.
- Daily Algorithm starter code.
npm install react-bootstrap bootstrap
npm install axios
npm install react-router-dom
import "bootstrap/dist/css/bootstrap.min.css";
npm i express
npm i mongoose
npm i cors
npm i dotenv
npm install -g nodemon (Windows)
sudo npm install -g nodemon (Mac)
- run the first command to get the PID of the port
- kill the port with the PID.
to getting the background process and find the PID
lsof -i:8000
To kill the PID
kill -9 <PID>
to getting the background process and find the PID
netstat -ano | findstr :8000
To kill the PID
taskkill /PID <PID> /F