12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
const express = require('express');
|
|
|
|
const app = express();
|
|
|
|
app.use('/static', express.static(__dirname + '/public'));
|
|
|
|
app.use('/', function (request, response) {
|
|
response.send('<h1>Главная страница</h1>');
|
|
});
|
|
|
|
app.listen(3000);
|