Update README.md

This commit is contained in:
Camel Aissani 2016-07-17 11:17:08 +02:00 committed by GitHub
parent 534f529b0c
commit 9c7681e2b4

View File

@ -11,7 +11,7 @@
import frontexpress from 'frontexpress';
const app = frontexpress();
// listen HTTP GET request on path (/)
// listen HTTP GET request on path (/hello)
app.get('/hello', (req, res) => {
document.querySelector('.content').innerHTML = '<p>Hello World</p>';
});