User Authentication and Authorization with Passport.js
In this chapter, we will learn how authentication and authorization work in a modern web application. We will explore the cryptography behind many security mechanisms and will learn how to implement these concepts in our web applications using JSON Web Tokens (JWT). We will also see how we can extend our authentication strategies with third-party providers such as Facebook or Spotify with Passport.js.
At the end of this chapter, we will implement authentication and authorization in our web application project iterating over the code that we generated in the previous chapter. We will also learn how to specifically test them.
To sum up, here are the main topics that we will explore in this chapter:
- How authentication and authorization work in a web application
- How to use JWT to authenticate users in our web application
- The cryptography basics that we need to know to understand modern authentication and authorization...