JSON Server POST
by Jacob King
JavaScript
fetch('http://localhost:3000/users', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ name: 'Bob', email: '[email protected]' })
})
.then(r => r.json())
.then(newUser => console.log(newUser));