Created
October 27, 2018 06:43
-
-
Save ReactGirl/a5a8b5b4e2c66956d78f8fb3869940ad to your computer and use it in GitHub Desktop.
Exercise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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