Skip to content

Instantly share code, notes, and snippets.

View thebkr7's full-sized avatar
🍉

Benji thebkr7

🍉
View GitHub Profile
anonymous
anonymous / animated-background.markdown
Created March 16, 2018 20:46
Animated Background
@jebeck
jebeck / simple.js
Created February 6, 2017 00:56
very simple Inquirer.js example
// run with `node simple.js` in node v4.x+
// must have Inquirer installed (`npm install inquirer`)
const inquirer = require('inquirer');
inquirer.prompt([{
name: 'name',
type: 'input',
message: 'What\'s your name?',
}, {
@umidjons
umidjons / client-server-post-request-ex-in-pure-node.md
Created August 17, 2016 09:29
Client/Server post request example in pure Node.js

Client/Server POST request example in pure Node.js

File server.js:

var http = require('http');
var querystring = require('querystring');

var server = http.createServer().listen(3000);

server.on('request', function (req, res) {