Javatpoint Logo
Javatpoint Logo

Grouping the Backend Routes in MEAN Stack

In our previous section, updating and fetching post were working well. The authentication was still missing there. Right now, we are organizing everything in the app.js file. This file is still not big, and in this section, we will organize our routes differently because we will later add more routes for authentication. It will be good if we group them. We will use the following steps to group them:

1) So, as we have a folder and file structure on the frontend, we want to have one on the backend. Besides our "models" folder, we will add another folder, and we will name it routes. In this, we will organize our routes for our backed. In this folder, we will also create a javascript file and name it posts in the following way:

Grouping the Backend Routes in MEAN Stack

2) In this file, we will import the express using the javascript syntax and then we will set up the express router by creating a new constant in the following way:


Grouping the Backend Routes in MEAN Stack

3) We will define our routes, and just as we did it with the app in the js file, we can use router.get() in the following way:


Grouping the Backend Routes in MEAN Stack

This works in the same way as the app did before. In this, we can replicate the route by grabbing its URL. We pass the URL as a first argument and the function as a second argument. We can also grab all the routes in the app.js file.

4) So, we will cut all the routes from the js files and add them in the posts.js file and we will also replace app with the router in the following way:


Grouping the Backend Routes in MEAN Stack

5) Now, we need to export this router to make express aware of it, and for this, we will use the module.exports syntax in the following way:


Grouping the Backend Routes in MEAN Stack

6) We need to import it into our app.js file so that we can again make our main express app aware of these extra routes because if we don't import router, then all our routes would fail. So, we will import the routes in the following way:

After importing the route object, we need to make express aware of it, and that will be done in the following way:


Grouping the Backend Routes in MEAN Stack

7) There is no use of the postmodel in the app.js file because we used our model in the routes. So, we will remove it from the app.js file and import our postmodel into our posts.js file.


Grouping the Backend Routes in MEAN Stack

8) We can improve use(postroutes). Later, we will have multiple routes file, and our posts.js file should only handle routes which reach /api.posts/nothing or slash something like id. We cut the /api/posts from our posts request and assume that any route or request to reach that file was already filtered. For that, we will add /api/posts in the app.js file as a first argument of app.use() method in the following way:


Grouping the Backend Routes in MEAN Stack

By adding this line of code, we filtered for requests going to API posts and only requests where the URL or the URL path starts with /api/posts will be forwarded into the posts routes file and routing setup.

Grouping the Backend Routes in MEAN Stack

9) Now, we also need to remove /api/posts for the put request, get requests and delete requests.

Grouping the Backend Routes in MEAN Stack

We should still have a working app as before, and we will test this by adding or deleting the post. So, we will go back to our angular app and try to add and delete a post.

Grouping the Backend Routes in MEAN Stack

Everything is working well after grouping the routes into a new file. In our next section, we will learn how we can add a loading spinner into our app.

Download Complete Project(Grouping routes.zip)







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA