1/23
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
What is Node.js?
A JavaScript engine that runs JavaScript WITHOUT a browser using a runtime environment.
What is a Node.js package?
A collection of prebuilt JavaScript functions stored in a reusable module.
What is an API?
An Application Programming Interface that allows a client and server to communicate.
What does the client application do in an API system?
Sends requests to the server and receives responses.
What does the server application do in an API system?
Processes requests and sends back responses.
What is REST in RESTful APIs?
Representational State Transfer
Which HTTP methods do RESTful APIs commonly use?
GET
What does an HTTP GET request generally do?
Retrieves data from the server.
What do you need before creating a serverless API?
An AWS Lambda function and an API Gateway configuration.
Why do we enable VPC for the Lambda function?
To allow the Lambda function to run inside a private network environment.