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

12 lines
364 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 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);