mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
38 lines
646 B
Markdown
38 lines
646 B
Markdown
# Marko + HTTP Server
|
|
|
|
See the [marko-http](https://github.com/marko-js-samples/marko-http) sample
|
|
project for a working example.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
npm install marko --save
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
require("marko/node-require").install();
|
|
|
|
const http = require("http");
|
|
const server = http.createServer();
|
|
|
|
const port = 8080;
|
|
const indexTemplate = require("./index.marko");
|
|
|
|
server.on("request", (req, res) => {
|
|
indexTemplate.render(
|
|
{
|
|
name: "Frank",
|
|
count: 30,
|
|
colors: ["red", "green", "blue"]
|
|
},
|
|
res
|
|
);
|
|
});
|
|
|
|
server.listen(port, () => {
|
|
console.log(`Successfully started server on port ${port}`);
|
|
});
|
|
```
|