| URL | Purpose |
|---|---|
| /stats.do | Quick stats |
| /cache.do | Clear your instance cache |
| 1. What is IAM? | |
| - IAM allows you to manage users and their level of access to the AWS Console. | |
| 2. What does IAM give you? | |
| - Centralized control of your AWS account | |
| - Shared Access to your AWS account | |
| - Granular Permissions | |
| - Identity Federation (including Active Directory, Facebook, LinkedIn, etc) | |
| - Multifactor Authenthication | |
| - Provides temporary access for the users/devices and services, as necessary |
| # Links & Documentation | |
| - Final Repo - https://github.com/bradtraversy/devcamper-api | |
| - Final Deployed Project - https://devcamper.io | |
| - Specs Sheet - https://gist.github.com/bradtraversy/01adb248df70fb29e98c30cf659042cf | |
| ## Tools | |
| - Node.js - https://nodejs.org/en/ | |
| - VSCode - https://code.visualstudio.com/ |
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com