Deno First Look

Deno First Look

An introduction to the Deno JavaScript runtime

Table of Contents

  1. 1 - Welcome

    1. Introduction
    2. How to use the exercises
  2. 2 - What is Deno

    1. What & Why
    2. Secure By Default
    3. Dependency Hell
    4. TypeScript First
  3. 3 - Getting to know Deno

    1. Installing Deno
    2. Tooling
    3. Your first program
    4. The Deno object
    5. CLI Tour
    6. Debugging
  4. 4 - Understanding Dependencies

    1. Thinking like a browser
    2. Local dependencies
    3. Remote dependencies
    4. Best Practices
    5. Compatibility With Node
  5. 5 - Permissions

    1. Granting Permissions
    2. Requesting Permissions
    3. Permission Specificity
    4. Determining Permissions
  6. 6 - Building a Webserver

    1. Building a simple webserver
    2. Reading the query string
    3. Serving up static files
  7. 7 - Oak web framework

    1. Introducing Oak
    2. A Simple Oak Server
    3. The Oak Router
    4. Templates
    5. Serving Static Files
  8. 8 - Deploying

    1. Containerizing a Deno Application
    2. Pushing the Deno image to a registry
    3. Deploying the Deno image