BACKEND NODE.JS CREATED COMMEND
Thu Nov 07 2024 08:17:45 GMT+0000 (Coordinated Universal Time)
Saved by
@codeing
#javascript
#react.js
#nodejs
mkdir backend
cd backend
mkdir config
New-Item -ItemType File -Path ./config/db.js
mkdir controllers
New-Item -ItemType File -Path ./controllers/authController.js
mkdir models
New-Item -ItemType File -Path ./models/User.js
mkdir routes
New-Item -ItemType File -Path ./routes/authRoutes.js
mkdir middleware
New-Item -ItemType File -Path ./middleware/authMiddleware.js
New-Item -ItemType File -Path ./server.js
New-Item -ItemType File -Path ./package.json
New-Item -ItemType File -Path ./.env
echo ".env" >> .gitignore
content_copyCOPY
Comments