Skip to content

Instantly share code, notes, and snippets.

@RamVellanki
RamVellanki / default-npmrc
Created April 18, 2016 09:56 — forked from mrzool/default-npmrc
The default npmrc
;;;;
; npm userconfig file
; this is a simple ini-formatted file
; lines that start with semi-colons are comments.
; read `npm help config` for help on the various options
;;;;
;;;;
; all options with default values
;;;;
@RamVellanki
RamVellanki / 0_reuse_code.js
Created March 24, 2016 15:45
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@RamVellanki
RamVellanki / app.js
Created February 7, 2016 06:52 — forked from sogko/app.js
gulp + expressjs + nodemon + browser-sync
'use strict';
// simple express server
var express = require('express');
var app = express();
var router = express.Router();
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendfile('./public/index.html');