// response is full Response object, with URL, headers, method and etc.
axios.post("http://localhost:8080/api/some/awesome/endpoint", postData)
.then(response => console.log(response.data));
// no need for .json method, becouse response.data already is JS object