Skip to content

Instantly share code, notes, and snippets.

View morri5's full-sized avatar

Mauricio Altamirano Silva morri5

  • Pagemachine AG
  • Frankfurt, Germany
  • 21:00 (UTC +02:00)
View GitHub Profile
@sogko
sogko / app.js
Last active April 8, 2026 08:50
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');