This is the beginnibg of my DevLog into creating a MERN Stack Admin Dashboard.
Frontend will be using:
Backend:
The first thing we need is to install the latest Node Version. To check whether or not we have Node installed on our system, just run the following command:
node -v
If you have it installed correctly, get the latest version by running:
sudo npm install -g npm@latest
The other dependencies are going to by thing like installing npx
, and an IDE for now. Those things are pretty easy so we move on with the actual project itself.
Create the folder for the backend called server
and we will initialise it by running the following code inside it: