Skip to content

joaolessab/brandnew-node.js-api-jwt-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node.js API with JWT Auth

> 🔒 A simple Node.js API that connects to MongoDB,
generates and throws back a JWT Token to the final endpoint

GitHub license GitHub repo size GitHub stars GitHub forks

GitHub issues GitHub contributors GitHub last commit GitHub language count

What's Authentication and AuthorizationWhat is JWTProject Requirements

How to: Run this project locallyAPI's providedScreenshots


Made with ❤️ by João Vitor Lessa - 👏🏻 Get in Touch!

Hit the ⭐️ button if you like this project!


• What's Authentication and Authorization

Authentication and authorization are used in security, particularly when it comes to getting access to a system. Yet, there is a significant distinction between gaining entry into a house (authentication) and what you can do while inside (authorization).

Authentication

Authentication is the process of verifying a user’s identification through the acquisition of credentials and using those credentials to confirm the user’s identity. The authorization process begins if the credentials are legitimate. The authorization process always follows the authentication procedure.

You were already aware of the authentication process because we all do it daily, whether at work (logging into your computer) or at home (logging into a website). Yet, the truth is that most “things” connected to the Internet require you to prove your identity by providing credentials.

Authorization

Authorization is the process of allowing authenticated users access to resources by determining whether they have system access permissions. By giving or denying specific licenses to an authenticated user, authorization enables you to control access privileges.

So, authorization occurs after the system authenticates your identity, granting you complete access to resources such as information, files, databases, funds, places, and anything else. That said, authorization affects your capacity to access the system and the extent to which you can do so.

• What is JWT

JSON Web Tokens (JWT) are an RFC 7519 open industry standard for representing claims between two parties. For example, you can use jwt.io to decode, verify, and produce JWT.

JWT specifies a compact and self-contained method for communicating information as a JSON object between two parties. Because it is signed, this information can be checked and trusted. JWTs can be signed using a secret (using the HMAC algorithm) or an RSA or ECDSA public/private key combination. In a moment, we’ll see some examples of how to use them.

• Project Requirements

  1. Node.js installed
  2. MongoDB Cluster connection

• How to: Run this project locally

  1. Navigate to the app folder
  2. In the file .env, insert your MongoDB database credentials
  3. Run: npm install
  4. Run: node server.js
  5. Open the address: http://localhost:4001 to test the API calls
  • The server and the database should be running without any crashing
  • Check the image below:

• API's Provided

Method URL Actions
POST http://localhost:4001/register Signup new account
POST http://localhost:4001/login Login an account
GET http://localhost:4001/welcome Welcome Request Testing JWT

• Screenshots

- Registering User via: http://localhost:4001/register

- View User registered on MongoDB Cluster:

- Getting User info via: http://localhost:4001/login

- Trying to access request without JWT: http://localhost:4001/welcome

- Trying to access request with JWT: http://localhost:4001/welcome

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published