UNPKG

@hoppscotch/httpsnippet

Version:

HTTP Request snippet generator for *most* languages

9 lines 284 B
"use strict"; var request = require('request'); var options = { method: 'PROPFIND', url: 'http://mockbin.com/har' }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); }); //# sourceMappingURL=custom-method.js.map