...

/

Solution: The Deno Runtime and Standard Library

Solution: The Deno Runtime and Standard Library

Review the solution for the Deno Runtime and Standard Library challenge.

We'll cover the following...

Solution

Task 1

Use the command below to serve the current directory:

deno run --allow-net --allow-read https://deno.land/std@0.83.0/http/file_server.ts web-apis
Command to serve the current directory
  • --allow-net: To allow network access. ...