Spread out from a rolled or folded state
yarn add unfurled
var unfurled = require('unfurled')
unfurled('http://example.com')
.then(console.log)
.catch(console.error)
Or if you're cool and use ES7 async await
var unfurled = require('unfurled')
var result = await unfurled('http://example.com')