-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (36 loc) · 1.17 KB
/
index.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
45
46
47
48
49
const http = require('http');
const rupiah = require('rupiah-format')
const kitacuba = require('currency-formatter')
const fs = require('fs')
const os = require('os')
const host = 'localhost'
const port = 3002
//request = data masuk dari luar
//response = data keluar dari sistem
const server = http.createServer(function (request, response) {
const nama = "Firdaus Fitri";
let wang = 5000;
let jajan = 1500;
let sisa = wang-jajan;
wang = kitacuba.format(wang,{code: 'MYR'})
jajan = rupiah.convert(jajan)
sisa = rupiah.convert(sisa)
fs.appendFile('sisawang.txt',sisa, () =>{
console.log('berjaya disimpan')
})
const freeMem = os.freemem();
const hasil = `
<head>
<title>${nama}</title>
</head>
<body>
<h1 style='background:red;color:white;padding:20px;text-align:center'> NodeJS Wang Jajan</h1>
<p> saya ${nama} jajan sebanyak ${jajan}, uang saya tadinya ${wang} sekarang menjadi ${sisa}...</p>
<h4>freee memoryy: ${freeMem}</h4>
</body>`
response.statusCode = 200;
response.end(hasil);
});
server.listen(port, host, function () {
console.log(`server menyala di ${host}:${port}`);
})