Back

Week 28 - 2019

The weeknote for 7/8 - 7/14.

OSS

denoland/deno

🦕 Deno is a new JavaScript and TypeScript runtime.

window.onload = async function() {
  const res = await fetch(Deno.args[1]);
  console.log(await res.text());
};

This script shows the contents from the url given from the command line argument. There is no explicit call of onload function above, but it's called automatically by the system when the script is loaded.

Job

s3sync

♻️ s3sync is a Golang utility for syncing between s3 and local.

Event

TS meetup #2


Back

Edit this page

revision: 229ec20