Skip to content

Instantly share code, notes, and snippets.

View tawanorg's full-sized avatar
🚩
In building

Tawan tawanorg

🚩
In building
View GitHub Profile
@tawanorg
tawanorg / app.js
Created February 1, 2016 17:34 — 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');