Skip to content

Instantly share code, notes, and snippets.

@fl3xice
Created December 8, 2019 11:06
Show Gist options
  • Save fl3xice/0dffcd3c60aa2b03a6e0b6306621463d to your computer and use it in GitHub Desktop.
Save fl3xice/0dffcd3c60aa2b03a6e0b6306621463d to your computer and use it in GitHub Desktop.
Server for front-end
let express = require('express');
let app = express();
let color = require('colors');
app.use(express.static(__dirname + '/public'));
app.listen(9090, function () {
console.log('http://127.0.0.1:9090/'.green + ' Work'.yellow);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment