- Wep Application development framework based on NodeJS
 - Small Framework that does not slow your app down
 
- Takes care of a lot of common tasks when building a web app:
- parsing Requests
 - Routing
 - Error Handling
 
 
- Fast
 - Minimal - Provides you only with the fundamental features for your app
 - Unopinioated - no default configurations in order for your to structure your app your own way
 - Simple - very easy to use, very simple to: install, use and read documentation
 - Unobtrusive - setup ExpressJS they way I want it to be used no prereq libs only libs of my choice
 
npm install express --saveapp.get('/', function (req, res) {
  res.send('This is a get request!')
})app.post('/', function (req, res) {
  res.send('This is a post request')
})app.delete('/user', function (req, res) {
  res.send('Deleting the user: /user')
})app.put('/user', function (req, res) {
  res.send('Just Made a PUT request for /user')
})