- Koa.js - Resources
- Koa.js - Scaffolding
- Koa.js - Logging
- Koa.js - RESTful APIs
- Koa.js - Database
- Koa.js - Caching
- Koa.js - Compression
- Koa.js - Authentication
- Koa.js - Sessions
- Koa.js - Cookies
- Koa.js - Static Files
- Koa.js - File Uploading
- Koa.js - Form Data
- Koa.js - Templating
- Koa.js - Cascading
- Koa.js - Error Handling
- Koa.js - Redirects
- Koa.js - Response Object
- Koa.js - Request Object
- Koa.js - HTTP Methods
- Koa.js - URL Building
- Koa.js - Routing
- Koa.js - Generators
- Koa.js - Hello World
- Koa.js - Environment
- Koa.js - Overview
- Koa.js - Home
Koa.js Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Koa.js - HTTP Methods
The HTTP method is suppped in the request and specifies the operation that the cpent has requested. The following table summarizes the commonly used HTTP methods.
Sr.No. | Method & Description |
---|---|
1 | GET The GET method requests a representation of the specified resource. Requests using GET should only retrieve data and should have no other effect. |
2 | POST The POST method requests that the server accept the data enclosed in the request as a new object/entity of the resource identified by the URI. |
3 |
PUT The PUT method requests that the server accept the data enclosed in the request as a modification to the existing object identified by the URI. If it does not exist, then PUT method should create one. |
4 |
DELETE The DELETE method requests that the server delete the specified resource. |
These are the most common HTTP methods. To learn more about them, head over to
. Advertisements