Skip to main content

Deno Course - Better than Node.js?


Curriculum for the course Deno Course - Better than Node.js?

Learn how to use Deno in this complete course. Deno is a Node.js alternative created by the same person who created Node.js. In this tutorial course, you will learn how to build real apps with Deno. You will also learn the basics of the Typescript. You will see how to use Deno to build a survey app with a REST API using MongoDB. 💻 Code: https://github.com/thecodeholic/freecodecamp-deno-course 🎥 Course from The Codeholic. Check out his channel: https://twitter.com/TheCodeholic 🔗 Official Deno website: https://deno.land/ ⭐️ Course Contents ⭐️ Introduction --------------------- ⌨️ (00:00:00) Introduction ⌨️ (00:02:02) Course overview ⌨️ (00:04:38) Course Project ⌨️ (00:05:51) What is Deno ⌨️ (00:08:19) Course project (Survey app) demo ⌨️ (00:11:54) Install and Getting started ⌨️ (00:14:34) Write "Hello World" ⌨️ (00:15:50) Main Features TypeScript --------------------- ⌨️ (00:17:22) What is TypeScript ⌨️ (00:24:04) TypeScript Types ⌨️ (00:37:40) Interfaces ⌨️ (00:43:46) Classes ⌨️ (00:48:03) Generics ⌨️ (00:56:31) Enums Main features --------------------- ⌨️ (01:01:23) Import from URL ⌨️ (01:02:23) ES6 Modules import syntax ⌨️ (01:03:01) Top Level await ⌨️ (01:04:18) Browser API ⌨️ (01:06:20) Security ⌨️ (01:16:31) Single Executable file ⌨️ (01:18:55) Terminal commands ⌨️ (01:23:52) Standard Library and 3rd party modules ⌨️ (01:26:31) Create basic HTTP server ⌨️ (01:32:20) Working with file system ⌨️ (01:41:55) Using npm packages ⌨️ (01:45:40) Answers on common questions Project - Survey app ---------------------- ⌨️ (01:57:02) Install oak framework and setup basic server ⌨️ (02:03:41) Install denon for automatic server restart on file change ⌨️ (02:06:03) Easily manage versions and dependencies ⌨️ (02:08:06) Organize routes ⌨️ (02:09:36) Create AuthController and configure Login & Register routes ⌨️ (02:13:54) Setup connection with MongoDB ⌨️ (02:19:40) Create User model and implement registration ⌨️ (02:40:42) Implement login ⌨️ (02:54:16) Install dontenv and create .env file Survey CRUD ---------------------- ⌨️ (02:59:35) Configure routes for Survey CRUD and Create SurveyController ⌨️ (03:04:52) Create Survey model and implement Survey creation ⌨️ (03:11:22) Implement get surveys ⌨️ (03:20:33) Create BaseModel and inherit Survey and User models from there ⌨️ (03:26:12) Implement to get single survey ⌨️ (03:31:29) Implement survey update ⌨️ (03:39:22) Printing application errors ⌨️ (03:40:26) Fixing problem of "this" binding ⌨️ (03:44:27) Implement survey deletion ⌨️ (03:48:52) Create authMiddleware and add authentication to Survey CRUD ⌨️ (04:07:38) Implement CRUD of questions Create Website ---------------------- ⌨️ (04:44:15) Create SiteController and configure routes ⌨️ (04:47:38) Install template engine and create views ⌨️ (04:51:48) Render all surveys ⌨️ (04:55:32) Configure oak to handle static files (CSS, Javascript, Images) ⌨️ (05:06:05) Write basic styles ⌨️ (05:07:31) Create and use partial view files ⌨️ (05:09:30) Implement to view single survey ⌨️ (05:33:58) Get form submitted data and validation ⌨️ (05:49:07) Implement displaying validation errors in form ⌨️ (06:01:45) Implement to save survey answers ⌨️ (06:14:49) Create a real survey using our survey app -- Learn to code for free and get a developer job: https://www.freecodecamp.org Read hundreds of articles on programming: https://freecodecamp.org/news And subscribe for new videos on technology every day: https://youtube.com/subscription_center?add_user=freecodecamp

Watch Online Full Course: Deno Course - Better than Node.js?


Click Here to watch on Youtube: Deno Course - Better than Node.js?


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy Deno Course - Better than Node.js? courses free download, Plurasight Deno Course - Better than Node.js? courses free download, Linda Deno Course - Better than Node.js? courses free download, Coursera Deno Course - Better than Node.js? course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee