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
1,110 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
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
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
This is a full walkthrough for the File Metadata Microservice project on freeCodeCamp. We can install an npm package called ...
2,806 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,371 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
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,305 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,418 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
Get 40% OFF CodeCrafters: https://app.codecrafters.io/join?via=the-coding-gopher ⬆️ Best project-based coding platform.
489,262 views
9 months ago
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
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
To link login forms to our strategies, we can mount a middleware called passport.authenticate() to our POST route. Link to ...
1,593 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 use middleware to redirect paths to load assets stored in other locations. Middleware can be attached to a path by calling ...
2,718 views
This is a full walkthrough for the Request Header Parser Microservice project on freeCodeCamp. We can set up a GET route for ...
2,275 views
The final step is to be able to emit and receive chat messages that all clients can see. We can do this by emitting the message to ...
1,047 views
Two key socket methods emit() and on() allow sending and receiving data between clients and the server. Link to Challenge ...
706 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