Skip to content

Instantly share code, notes, and snippets.

View tmtanzeel's full-sized avatar
🎯
Focusing

Tanzeel Mirza tmtanzeel

🎯
Focusing
View GitHub Profile
var request = require('request');
var arg="";
process.argv.slice(2).forEach(function (val, index, array) {
arg+=val +" ";
});
request.post({
url: "http://localhost:3000",
json: true,
body: {message: arg}
}, function (err, response, body) {