final
This commit is contained in:
12
task16/app.js
Normal file
12
task16/app.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const app = require('express')();
|
||||
|
||||
app.get('/', function (request, response) {
|
||||
response.send('<h1>Главная страница</h1>');
|
||||
});
|
||||
app.get('/about', function (request, response) {
|
||||
response.send('<h1>О сайте</h1>');
|
||||
});
|
||||
app.get('/contact', function (request, response) {
|
||||
response.send('<h1>Контакты</h1>');
|
||||
});
|
||||
app.listen(3000);
|
||||
Reference in New Issue
Block a user