Add Express

Fixes: #561
Co-Authored-By: errazudin ishak <errazudin.ishak@gmail.com>
This commit is contained in:
Richie Bendall
2020-03-30 17:16:15 +13:00
parent 9b3219cb22
commit da85fb6d1a
2 changed files with 7 additions and 0 deletions

View File

@@ -214,6 +214,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Eoool](e%5CEOOOL.eoool)
* [Erlang](e%5Cerlang.erl)
* [Erlang Escript](e%5Cerlang_escript.erl)
* [Express](e%5Cexpress.js)
* [Factor](f%5Cfactor.factor)
* [Falcon](f%5Cfalcon.fal)
* [False](f%5Cfalse.f)

6
e/express.js Normal file
View File

@@ -0,0 +1,6 @@
const express = require('express')
const app = express()
app.get('/', (_, res) => res.send("Hello World"))
app.listen(8080)