-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
39 lines (29 loc) · 771 Bytes
/
app.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
const express=require('express')
const path=require('path')
const hbs=require('hbs')
const request=require('request')
const app=express()
//serving static files
const publicDirectoryPath=path.join(__dirname,'./public')
app.use(express.static(publicDirectoryPath))
//views
app.set('view engine', 'hbs')
//api
const url="https://api.wazirx.com/api/v2/tickers"
app.get('/',(req,res)=>{
request({url},(err,response)=>{
if(err){
return res.json(err)
}
let arr=[]
let data=JSON.parse(response.body)
for(let i in data){
arr.push(data[i])
}
let newarr=arr.splice(0,10)
res.render('index',{
newarr
})
})
})
app.listen(3212,()=>{console.log("App is running on port 3212")})