Skip to content

Instantly share code, notes, and snippets.

@vitoravale
Created February 2, 2018 00:26
Show Gist options
  • Save vitoravale/4f216477987ba189869cc2d9f3075a2f to your computer and use it in GitHub Desktop.
Save vitoravale/4f216477987ba189869cc2d9f3075a2f to your computer and use it in GitHub Desktop.
hearthstone json to tsv
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