Created
February 2, 2018 00:26
-
-
Save vitoravale/4f216477987ba189869cc2d9f3075a2f to your computer and use it in GitHub Desktop.
hearthstone json to tsv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const https = require('https') | |
const fs = require('fs') | |
const url = 'https://api.hearthstonejson.com/v1/22611/enUS/cards.collectible.json'; | |
https.get(url, res => { | |
res.setEncoding('utf-8'); | |
let body = ''; | |
res.on('data', data => { | |
body += data; | |
}) | |
res.on('end', () => { | |
body = JSON.parse(body); | |
const message = body.map(card => `${card.name}? ${JSON.stringify(card)}`).join('\n'); | |
fs.writeFile('./questions.tsv', message, err => { | |
if(err) | |
return console.log(err); | |
console.log('Arquivo criado'); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment