-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
31 lines (24 loc) · 895 Bytes
/
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
const express = require('express')
const { createActor, actorSystem } = require('./actorSystem')
class Server{
static async init() {
Server.port = 4000;
Server.actor = await createActor()
Server.actorSystem = actorSystem
Server.app = express()
Server.app.get('/weather', Server.getWeather)
Server.app.get('/prime', Server.getPrime)
return Server.app.listen(Server.port)
}
static async getWeather(req, res) {
const reply = await Server.actor.sendAndReceive('getCurrenWheather', req.query.city)
res.status(200).send(reply)
}
static async getPrime(req, res) {
const reply = await Server.actor.sendAndReceive('getPrime', req.query.num)
res.status(200).send(reply.toString())
}
}
Server.init().then(() => {
console.log(`Server is running on http://localhost:${Server.port}`)
})