-
Notifications
You must be signed in to change notification settings - Fork 0
/
demoApp.js
27 lines (25 loc) · 1000 Bytes
/
demoApp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const express = require('express')
const app = express()
async function demoApp() {
app.get('/', (req, resp) => {
resp.sendFile('demo.html', {
root: __dirname
})
})
console.log(`
@@@@@@@@@@@@@ @@@@@@@@
@@@ @@@ @ @
@@ @@@ @
@@@ @@@@@@@@@@@@@@@
@@@ @@ @@
@@@ @@ @@@ @@
@@@@@@@@@@@@@@@@@@ @@ @ @@
@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@
`)
setTimeout(() => {
console.log('Welcome to ZoAuth!!')
console.log('Visit http://localhost:5210 on your favourite browser(probably Chrome) to see your new demo app in action! Yours sincierly, the ZoAuth team!')
}, 250)
app.listen(5210)
}
module.exports = demoApp