While trying to do the MERN tutorial(Travers Media), i've also been asking a few questions to my friends who do code. And it irritates my friend that i don't separate client folder and server folder. but since my plan is to run both backend and frontend at the same time with concurrently, it hasn't actually been working.
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --suffix --prefix client",
"dev": "concurrently \"npm run server\" && \"npm run client\""
},