DEV Community

Cover image for Free Course: Deno Beginner
Ahmad Awais ⚡️
Ahmad Awais ⚡️

Posted on

6 2

Free Course: Deno Beginner

I'm super excited to announce a free crash course on Deno. Sign up to learn about deno, it's differences from Node.js, and let's build three simple projects while at it.


DenoBeginner

Deno For Beginners Course

Learn deno by example. In this free crash course, Awais will teach you what is Deno, how is Deno different than Node.js, and together you'll build three simple projects with deno. Not sure why I wrote that in 3rd person. 😆

Deno

Caution: Shameless plug ahead! Support my work.

Course Contents

  • ✅   ACCESS: All Modules
  • ✅   VIDEOS: Every Course Video
  • ✅   EXAMPLES: Over 3 Example Projects
  • 📺   MODULE #1: Introduction to Deno
  • 📺   MODULE #2: Deno vs Node
  • 📺   MODULE #3: Deno: A fun tip
  • 📺   MODULE #4: Deno Core
  • 📺   MODULE #5: Installing Deno
  • 📺   MODULE #6: Deno CLI Review
  • 📺   MODULE #7: Deno with VSCode
  • 📺   MODULE #8: Deno CLI Help: Run
  • 📺   MODULE #9: Project #1: Hello Deno
  • 📺   MODULE #10: Project #2: Deno cat
  • 📺   MODULE #11: Project #3: Deno Server
  • 📺   MODULE #12: Deno.Land: Tools & Docs
  • 📺   MODULE #13: Deploy a Deno Website
  • 📺   MODULE #14: What's Next with Deno

Free: Sign up & Watch Now

DenoBeginner

Deno

Top comments (0)

11 Tips That Make You a Better Typescript Programmer

typescript

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!