육현진

modify app

Showing 1 changed file with 3 additions and 1 deletions
var express = require('express');
var app = express();
app.post('/', function (req, res) {
app.get('/', function (req, res) {
res.send('Hello World' + req);
})
app.get('/test', function (req, res) {
......