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
452 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,966 views
5 years ago
All data from our database user document will be deserialized into request.user, which we can provide when rendering the profile ...
707 views
Get 40% OFF CodeCrafters: https://app.codecrafters.io/join?via=the-coding-gopher ⬆️ Best project-based coding platform.
451,754 views
6 months 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 ...
850 views
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 ...
997 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,717 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,737 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,415 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 ...
925 views
This is a full walkthrough for the File Metadata Microservice project on freeCodeCamp. We can install an npm package called ...
2,798 views
To link login forms to our strategies, we can mount a middleware called passport.authenticate() to our POST route. Link to ...
1,589 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,304 views
The main advantage of Template Engines is that we can provide them variables in the render() method to embed into the HTML ...
2,362 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 ...
674 views
So far we have been storing our user's passwords as plain text, which is very dangerous! We need to 'hash' our passwords using ...
776 views
This is a full walkthrough for the Request Header Parser Microservice project on freeCodeCamp. We can set up a GET route for ...
2,269 views
We can create our own Middleware functions to intercept routes. We can then work with the request and response as we wish, ...
2,618 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
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,046 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
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,925 views
We'll use the 'passport-github' npm package to create a GithubStrategy which will allow the user to login through GitHub and ...
602 views
We can combine all our previous knowledge now to setup a Chai test for a POST request from scratch. Link to Challenge ...
1,231 views
The final thing we need to add is some database functionality and use the profile information obtained from GitHub to create a ...
577 views