Reading Superagent
documentation, There is no distinguish between POST & PUT request :
request.post('/user')
.set('Content-Type', 'application/json')
.send('{"name":"tj","pet":"tobi"}')
.end(callback)
How to do PUT request using this package ?