Answers for "js fetch get params"

2

js fetch get params

const withQuery = require('with-query');

fetch(withQuery('https://api.github.com/search/repositories', {
  q: 'query',
  sort: 'stars',
  order: 'asc',
}))
.then(res => res.json())
.then((json) => {
  console.info(json);
})
.catch((err) => {
  console.error(err);
});
Posted by: Guest on April-15-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language