Node.js
- 6 ответов
- 0 вопросов
1
Вклад в тег
"scripts": {
"start": "node index.js",
"heroku-postbuild": "yarn install"
},
app.get('/api/v1/bitcoin', function (req, res) {
//запрос coinmarketcap
.then(response => res.json(response))
.catch(() => res.send("Ops something went wrong"))
})