mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
11 lines
217 B
JavaScript
Executable File
11 lines
217 B
JavaScript
Executable File
var request = require("request");
|
|
|
|
var options = { method: 'GET', url: 'https://mockbin.com/har' };
|
|
|
|
request(options, function (error, response, body) {
|
|
if (error) throw new Error(error);
|
|
|
|
console.log(body);
|
|
});
|
|
|