Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 652 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 652 Bytes

Learn-Express

Master Express.js: where code meets cool, and web development becomes an art of effortless finesse.

Open your terminal and follow these steps:

  1. Initialize a new Node.js project with npm init -y.
  2. Install Express for powerful web development: npm install express.

Your project is now ready to roll!

The most commonly used HTTP methods POST, GET, PUT, PATCH, DELETE are similar to CURD (create, update, read, delete) operations in the database. Just try to remember below the key Points

Create NEW record =>POST

read=>GET

If the record exists then update else create a new record=>PUT

update/modify=>PATCH

delete=>DELETE