Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 234 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 234 Bytes

express-routing

Create different type of routing using express router

We can define routing in various ways:

  1. Using app.get(), app.post() etc...
  2. Using app.route('url').get().post() etc...
  3. Using express.Router() method.