Skip to content

Instantly share code, notes, and snippets.

@sebastianjnuwu
Created September 1, 2022 14:49
Show Gist options
  • Save sebastianjnuwu/52d9954ce23a07176aebdd2e9de072e3 to your computer and use it in GitHub Desktop.
Save sebastianjnuwu/52d9954ce23a07176aebdd2e9de072e3 to your computer and use it in GitHub Desktop.
const translate = require('translate-google');
const axios = require('axios');
axios.get('https://api.adviceslip.com/advice').then(function (e) {
translate(e.data.slip.advice, {to: 'pt'}).then(s => {
console.log(s)
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment