
Test Realtime Data
How to use?

Here is the Vuejs method to get fake users data with this /users api:
axios
.get('https://therichpost.com/testjsonapi/users/')
.then((response) => {
console.log(response);
})
{}

Here is the Angular method to get fake users data with this /users api:
http
.get('https://therichpost.com/testjsonapi/users/')
.subscribe(response => {
console.log(response);
});
{}

Here is the Reactjs method to get fake users data with this /user api:
axios
.get('https://therichpost.com/testjsonapi/users/')
.then((response) => {
console.log(response);
})
{}