Upgrade to Pro — share decks privately, control downloads, hide ads and more …

We built a runtime

Kurt Mackey
December 11, 2018

We built a runtime

Kurt Mackey

December 11, 2018
Tweet

Other Decks in Programming

Transcript

  1. Building a JavaScript Runtime // browsers implement a `fetch` method

    // for making HTTP requests fetch("https://fly.io").then(function (r) { console.log("got response:", { status: r.status, size: r.body.length }) }) Batteries not included