mernkit
Home
Buy MERNKIT
Preview
About
Search…
MERNKIT
Features
Tech Stack
Installation
Back-end
Application Structure
Environmental Variables
Google and Facebook Auth
API
Deployment
Front-end
Application Structure
Environmental Variables
Deployment
Other Resources
Powered By
GitBook
API
The structure of MERNKIT dictates that all routing is done by Routers in the routes folder. All the authentication methods issue a JSON Web Token for continual API authentication. Therefore, Keep a close eye out for the following line:
1
router.use(passport.authenticate("jwt", { session: false }));
Copied!
Anything above that line in a routes file is accessible without authentication.
Anything below is protected.
When you create your own routes you can use this same line of code to protect your routes.
Back-end - Previous
Google and Facebook Auth
Next - Back-end
Deployment
Last modified
1yr ago
Copy link