maaike's code samples
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
const express = require('express');
|
||||
const app = express();
|
||||
|
||||
app.get('/', (request, response) => {
|
||||
response.send('Hello Express!');
|
||||
});
|
||||
|
||||
app.listen(3000, () => {
|
||||
console.log('Express app at http://localhost:3000');
|
||||
});
|
||||
Reference in New Issue
Block a user