Skip to content

Instantly share code, notes, and snippets.

@shoveller
Created October 4, 2014 15:57
Show Gist options
  • Save shoveller/227bb001b00f55b87827 to your computer and use it in GitHub Desktop.
Save shoveller/227bb001b00f55b87827 to your computer and use it in GitHub Desktop.
express.js 를 사용한 가장 간단한 서버
/**
* Created by cinos81 on 2014. 10. 4..
*/
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.sendfile('index.html');
});
app.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment