Skip to content

Instantly share code, notes, and snippets.

View josnidhin's full-sized avatar

Jose Davis Nidhin josnidhin

View GitHub Profile
@josnidhin
josnidhin / http_request.js
Last active January 14, 2021 06:50
Simple Nodejs http request without external dependencies
'use strict';
const HTTP = require('http'),
HTTPS = require('https'),
PROTOCOL = {
HTTP: 'http:',
HTTPS: 'https:'
};
function request (opts, data) {