mirror of
https://github.com/Kong/insomnia.git
synced 2026-06-17 20:40:07 -04:00
13 lines
249 B
JavaScript
Executable File
13 lines
249 B
JavaScript
Executable File
const fetchOptions = {
|
|
mode: 'cors',
|
|
method: 'GET',
|
|
headers: {
|
|
accept: 'application/json',
|
|
'x-foo': 'Bar',
|
|
},
|
|
};
|
|
|
|
fetch('http://mockbin.com/har', fetchOptions)
|
|
.then(response => response.json())
|
|
.then(data => console.log(data));
|