Skip to main content

· 9 min read
IceyBlackTea

If you are starting this tutorial at one of the proctored tutorial events, then we've already provided you with a virtual machine that has all of the required software installed.

Otherwise, to complete the exercises, you will need to either build a virtual machine or install several dependencies.

p4 logo

· 3 min read
IceyBlackTea

An async function is a function declared with the async keyword, and the await keyword is permitted within them.

The async and await keywords enable asynchronous, promise-based behavior to be written in a cleaner style, avoiding the need to explicitly configure promise chains.

· 14 min read
IceyBlackTea

The Fetch API provides an interface for fetching resources (including across the network).

It will seem familiar to anyone who has used XMLHttpRequest,

but the new API provides a more powerful and flexible feature set.