Skip to content

Instantly share code, notes, and snippets.

View wgminer's full-sized avatar
🌴
On vacation

Will Miner wgminer

🌴
On vacation
View GitHub Profile
@sogko
sogko / app.js
Last active February 21, 2025 08:34
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');