Files
Praktika4/task20/app.js
kogleee 3dbd9654c2 final
2023-11-08 13:17:48 +03:00

19 lines
591 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const express = require('express');
const app = express();
// обработка запроса по адресу /about
app.get('/about', function (request, response) {
response.send('<h1>О сайте</h1>');
});
// обработка запроса по адресу /contact
app.use('/contact', function (request, response) {
response.send('<h1>Контакты</h1>');
});
// обработка запроса к корню веб-сайта
app.get('/l*li', function (request, response) {
response.send('<h1>Главная страница</h1>');
});
app.listen(3000);