Answers for "fake json api server"

1

json dummy data

fetch('https://jsonplaceholder.typicode.com/todos')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on December-15-2020
2

dummy api json

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
Posted by: Guest on April-14-2020
0

how to create fake api server

npm install --save-dev json-server
This install json-server to work as a fake api
Posted by: Guest on April-22-2021
1

json dummy data

fetch('https://jsonplaceholder.typicode.com/todos')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on December-15-2020
2

dummy api json

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
Posted by: Guest on April-14-2020
0

how to create fake api server

npm install --save-dev json-server
This install json-server to work as a fake api
Posted by: Guest on April-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language