---
title: Start a Working Express Server
## Start a Working Express Server
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
If you had a website at "example.com/" and wanted to serve a string such as "Hello Express" to whoever visits the root domain you could do so easily using Node and/or express:
```javascript
app.get("/", function(req, res) {
res.send("Hello Express");
});
```
Also, with the modern ES6 syntax you can save a few keystrokes by using arrow functions:
app.get("/", (req, res) => {