-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
44 lines (35 loc) · 1.21 KB
/
server.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// server.js
// where your node app starts
// init project
var express = require('express'),
app = express(),
datastore = require('./datastore'),
glitch = require('./glitch');
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
// http://expressjs.com/en/starter/static-files.html
app.use(express.static('public'));
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function (request, response) {
response.sendFile(__dirname + '/views/index.html');
});
var clicks = 0
app.get('/domain', function (request, response) {
clicks++
if (clicks % 20 === 19) glitch.loadMoar()
response.send(glitch.getDomain() || 'welcome-project')
})
// thinking about making this more fun / permanent
app.post('/like/:domain/', function (request, response) {
datastore.set(request.params.domain, 'ok');
response.send('ok');
});
app.get('/likes', function (request, response) {
datastore.keys().then(function(keys) {
response.send(keys);
});
});
// listen for requests :)
app.listen(process.env.PORT, function () {
console.log(`✨🚀 Your node ${process.version} app is listening on port ${this.address().port} ✨🚀`);
});