What is the correct way to add a new contact using a request in Express?
app.add('/contacts', function(req, res) { ... });
app.insert('/contacts', function(req, res) { ... });
app.post('/contacts', function(req, res) { ... });
app.create('/contacts', function(req, res) { ... });