Files
2018-10-16 21:32:40 +05:30

17 lines
1006 B
Markdown
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.

---
title: Serve Static Assets
localeTitle: Подавать статические активы
---
## Подавать статические активы
Статические веб-страницы довольно просты с экспрессом. Это может быть полезно для создания собственного веб-сайта или блога портфолио и т. Д.
Чтобы обслуживать статическую веб-страницу из папки «views», вы можете использовать код, например:
```javascript
const express = require("express");
const app = express();
app.use(express.static(__dirname + "/views"));
```
[Помогите нашему сообществу расширить эти подсказки и руководства](https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/apis-and-microservices/basic-node-and-express/meet-the-node-console/index.md) .