Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
456 results
We look at how to create an Express server app, and set up a basic route to return a string. We can import express with require(), ...
2,967 views
5 years ago
To create a registration form, in the POST route, we should create the user's document in the database if it doesn't exist, and then ...
851 views
Get 40% OFF CodeCrafters: https://app.codecrafters.io/join?via=the-coding-gopher ⬆️ Best project-based coding platform.
493,250 views
9 months ago
If you're failing this challenge, go to 16mins 2s To get started with our chat app, we need to set up socket, our database ...
1,000 views
All data from our database user document will be deserialized into request.user, which we can provide when rendering the profile ...
710 views
The main advantage of Template Engines is that we can provide them variables in the render() method to embed into the HTML ...
2,376 views
When building an API or Web App, we would need to capture Inputs in our requests. One way to do this is to extract parameters ...
2,739 views
This is a full walkthrough for the File Metadata Microservice project on freeCodeCamp. We can install an npm package called ...
2,806 views
To link login forms to our strategies, we can mount a middleware called passport.authenticate() to our POST route. Link to ...
1,594 views
To be able to log in users using a username and password, we have to set up a 'strategy' so that we can use these details to ...
1,419 views
In this short project, we'll be setting up an Oauth strategy that allows users to log into the site using a Github account and provide ...
1,308 views
Now that we have access to User information, we can announce to all clients the users that have entered and left the chat, using ...
675 views
We can use middleware to redirect paths to load assets stored in other locations. Middleware can be attached to a path by calling ...
2,718 views
To add functionality to our log out button, we can use the logout() method passport adds to a request to destroy the session cookie ...
933 views
We're gonna clean up our project now by splitting it into 3 files. We can use Node's module.exports and require() functionalities to ...
681 views
We can combine all our previous knowledge now to setup a Chai test for a POST request from scratch. Link to Challenge ...
1,235 views
Don't be an overconfident idiot like me, and you should be fine here! We can avoid setting up multiple routes, and instead chain ...
1,926 views
Two key socket methods emit() and on() allow sending and receiving data between clients and the server. Link to Challenge ...
706 views
We'll use the 'passport-github' npm package to create a GithubStrategy which will allow the user to login through GitHub and ...
603 views
Passport adds a method to each request called isAuthenticated() which we can use to check if the user is logged in before ...
1,001 views