Series - Beginners-Series-to-NodeJS


How to use advanced debugging features in VS Code [26 of 26][MP4] [0:05:28] [2020/10/12]
Learn advanced debugging techniques for more efficient debugging of your Node.js applications using Visual Studio Code. Full "Intro to Node.js" course on Microsoft Learn:…


How to read a stack trace in VS Code to debug a Node.js app [25 of 26][MP4] [0:03:36] [2020/10/12]
traces can be a bit unintelligible at first, but they are really useful to find out the source of an error in an application. Discover how you can use the call stack panel in Visual Studio Code to…


How to use the VS Code debugger with Node.js apps [24 of 26][MP4] [0:04:32] [2020/10/12]
Learn how you can run and analyze your Node.js code step by step using the integrated Visual Studio Code debugger. Full "Intro to Node.js" course on Microsoft Learn:…


How to configure VS Code to debug JavaScript Node.js apps [23 of 26][MP4] [0:03:23] [2020/10/12]
Let's take some time to see how you can configure and use Visual Studio Code for debugging Node.js applications. Full "Intro to Node.js" course on Microsoft Learn:…


How to run your code step by step in Node.js built-in debugger [22 of 26][MP4] [0:05:57] [2020/10/12]
Being efficient at finding software bugs is an important skill for all developers. Using a debugger can help you analyze a program and find issues quickly. Let's discover how you can use the built-in…


How to create update and delete APIs with Node.js and Express [21 of 26][MP4] [0:04:49] [2020/10/12]
To complete our CRUD (Create, Read, Update and Delete) API, we finally have to add the Update and Delete endpoints. Let's see how it differs from Read and Create and put the finishing touch to our…


How to create an API that receives JSON with Node.js and Express [20 of 26][MP4] [0:04:42] [2020/10/12]
When building an API that create new resources, you need to grab and parse data from the client application. Let's take a look at how you can build an endpoint that receive JSON using Node.js and…


How to handle API routing with Node.js and Express [19 of 26][MP4] [0:03:50] [2020/10/12]
When creating RESTful APIs, you need to retrieve parameters from the URL to access specific resources. Discover how to set up routing parameters with Node.js and Express. Full "Intro to…


How to create a GET API with Node.js and Express [18 of 26][MP4] [0:04:35] [2020/10/12]
Understanding routing is the first step to create API endpoints. Let's add our first GET API to a web server using Node.js and Express. Full "Intro to Node.js" course on Microsoft Learn:…


How to create a web API with Node.js and Express [17 of 26][MP4] [0:04:26] [2020/10/12]
Express is a popular library for building RESTful web APIs with Node.js. Discover how you can create and configure a web server using Express. Full "Intro to Node.js" course on Microsoft…


How to read and update JSON files with Node.js [16 of 26][MP4] [0:03:57] [2020/10/12]
JSON is a file format particularly useful for storing data in Node.js applications. Learn how to read and modify JSON files while taking care of potential failures.Full "Intro to Node.js"…


How to create files and directories with Node.js [15 of 26][MP4] [0:03:42] [2020/10/12]
Creating files is a convenient way to export data in your applications, but you also need to make sure you do not overwrite existing files in the process. Learn how you can write to the file system in…


How to use filesystem paths with Node.js [14 of 26][MP4] [0:04:49] [2020/10/12]
File system path manipulation can sometimes be tricky, especially for cross-platform applications. Discover how to manipulate paths in Node.js, with OS differences in mind. Full "Intro to…


How to list the contents in directories with Node.js [13 of 26][MP4] [0:05:46] [2020/10/12]
Navigate the file system and learn how to explore and list folder contents using the Node.js standard library. Full "Intro to Node.js" course on Microsoft Learn: https://aka.ms/LearnNode.js…


How to work with files and directories with Node.js [12 of 26][MP4] [0:01:50] [2020/10/12]
In almost every software you need to manipulate files at some point. Discover which built-in Node.js modules you can use to work with the file system in your Node.js applications.Full "Intro to…


How to manage Node.js vulnerabilities [11 of 26][MP4] [0:02:16] [2020/10/12]
Vulnerabilities can be a serious threat to any application. Learn how to assess the risk of your dependencies, and how to fix vulnerabilities in your Node.js applications using the NPM audit tool.Full…


How to update your Node.js dependencies [10 of 26][MP4] [0:04:21] [2020/10/12]
Packages gets updated constantly, with new features, bug fixes or security patches. Discover what is semantic versioning and how you can keep your dependencies up-to-date without breaking your code in…


What is a lockfile and why you should commit it [9 of 26][MP4] [0:01:59] [2020/10/12]
Lockfiles in Node.js are very important yet often misunderstood. Learn what is package-lock.json, how it work and why it's needed.Full "Intro to Node.js" course on Microsoft Learn:…


How to add and remove a dependency in a Node.js app [8 of 26][MP4] [0:04:00] [2020/10/12]
Code less and focus more on your custom development thanks to packages. Discover why packages are useful how you can use them in your Node.js applications.Full "Intro to Node.js" course on…


How to use NPM scripts for your development tasks automation [7 of 26][MP4] [0:02:16] [2020/10/12]
Development tasks to build, test and start your Node.js apps are run frequently and can be bothersome to type manually. Automate your tasks with NPM scripts to make your workflow more efficient.Full…


How to create a new Node.js project [6 of 26][MP4] [0:03:35] [2020/10/12]
Demonstration: quickly initialize new Node.js project using the NPM CLI.Full "Intro to Node.js" course on Microsoft Learn: https://aka.ms/LearnNode.jsWatch the entire series:…


How to set up VS Code for Node.js development [5 of 26][MP4] [0:05:11] [2020/10/12]
To efficiently develop Node.js applications, you need a good code editor.Let's take a tour of Visual Studio Code and discover 5 extensions you can use to improve your JavaScript development…


How to run JavaScript code in Node.js using files or REPL [4 of 26][MP4] [0:02:18] [2020/10/12]
Once you have a working Node.js environment, let's try running JavaScript code with it! Experiment with the interactive REPL tool and see how to create your own programs using JavaScript.Full…


How to install Node.js on Windows [3 of 26][MP4] [0:03:18] [2020/10/12]
Prepare your environment for streamlined Node.js developpement and easy update with NVM. Say goodbye to permissions issues or updates galore!This video is Windows users. Look at the previous video if…


How to install Node.js on Linux, macOS or WSL [2 of 26][MP4] [0:03:32] [2020/10/12]
Prepare your environment for streamlined Node.js developpement and easy update with NVM. Say goodbye to permissions issues or updates galore!This video is for Linux, macOS or WSL users. Look at the…


What is Node.js and why you should learn it [1 of 26][MP4] [0:02:29] [2020/10/12]
Discover what Node.js is all about and why it can be an asset to your tech porfolio. Watch the complete series to begin your Node.js developer journey!Full "Intro to Node.js" course on…