Skip to content

Instantly share code, notes, and snippets.

@ReactGirl
Created October 27, 2018 06:43
Show Gist options
  • Save ReactGirl/a5a8b5b4e2c66956d78f8fb3869940ad to your computer and use it in GitHub Desktop.
Save ReactGirl/a5a8b5b4e2c66956d78f8fb3869940ad to your computer and use it in GitHub Desktop.
Exercise
const express = require('express')
const chalk = require('chalk')
const app = express()
app.all('*', (req, res) => {
res.send(`<h1> welcome to my homepage </h1>`)
})
app.listen(3000)
console.log(chalk.cyan('sever started'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment