Inscription et connexion des utilisateurs
Créez des fonctionnalités d’inscription et de connexion des utilisateurs, notamment le hachage des mots de passe et le stockage sécurisé des identifiants.
Inscription et connexion des utilisateurs est une leçon Node.js Backend Development Bootcamp gratuite sur CoddyKit. Ceci est la leçon 1 sur 6. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Node.js Backend Development Bootcamp, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Node.js Backend Development Bootcamp comprend 6 leçons au total.
Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.
Welcome to User Authentication
User authentication is how we verify who a user is. It's a critical part of almost any application that handles personal data or restricted features.
- Why it matters: Protects user accounts and sensitive information.
- What we'll cover: Building registration and login flows from scratch.
The User Registration Flow
Registering a new user involves several steps to create a new account:
- User provides credentials (e.g., username, password, email).
- Input data is validated (e.g., strong password, unique email).
- The password is hashed for security.
- New user data (including the hashed password) is saved to the database.
Why Hash Passwords?
Storing passwords in plain text is a huge security risk! If your database is breached, all user passwords would be exposed.
Hashing transforms a password into a fixed-size, unreadable string. It's a one-way process, meaning you can't easily get the original password back from the hash.
We use libraries like bcrypt in Node.js for robust password hashing, which also adds a 'salt' to prevent common attacks.
Hashing Passwords with bcrypt
bcrypt is a popular library for securely hashing passwords. It's computationally intensive, making brute-force attacks harder.
Try running this example to see a password hashed:
const bcrypt = require('bcrypt');
const password = "mySecretP@ssword";
const saltRounds = 10; // Cost factor for hashing (higher is slower/more secure)
async function hashPassword() {
try {
const hashedPassword = await bcrypt.hash(password, saltRounds);
console.log("Original: " + password);
console.log("Hashed: " + hashedPassword);
} catch (error) {
console.error("Error hashing:" + error.message);
}
}
hashPassword();
Storing Hashed Credentials
After hashing, only the hashed password should be stored in your database, along with other user details like their email or username.
- NEVER store plain-text passwords.
- The hash is unique for each password, even if the original passwords are the same (thanks to salting).
- This hash is what you'll use for comparison during login.
The User Login Flow
When a user tries to log in, your application follows these steps:
- User provides their username/email and password.
- Application retrieves the user's record (including their stored hashed password) from the database based on the username/email.
- The provided password is hashed and compared against the stored hash.
- If they match, the user is authenticated, and a session or token is created.
Verifying Passwords with bcrypt
To check if a user's provided password matches the stored hash, we use bcrypt.compare(). It performs the hashing and comparison securely.
Run this code to see password comparison in action:
const bcrypt = require('bcrypt');
// This hash would typically come from your database
const storedHash = "$2b$10$w090/qB2k6n0Y7o8p9q.u.0Z1X2Y3Z4A5B6C7D8E9F0G1H2I3J4K5L6M7N8O9P0Q1R";
const passwordAttempt = "mySecretP@ssword";
const wrongAttempt = "incorrectPassword";
async function comparePasswords() {
try {
const isMatch = await bcrypt.compare(passwordAttempt, storedHash);
console.log(`'${passwordAttempt}' matches: ${isMatch}`);
const isWrongMatch = await bcrypt.compare(wrongAttempt, storedHash);
console.log(`'${wrongAttempt}' matches: ${isWrongMatch}`);
} catch (error) {
console.error("Error comparing:" + error.message);
}
}
comparePasswords();
Secure Credential Storage Practices
Beyond just hashing passwords, other credentials need protection:
- API Keys & Database URLs: Store these in environment variables (e.g.,
.envfiles), not directly in your code. - Sensitive User Data: Encrypt any highly sensitive data at rest in your database.
- Regular Updates: Keep your hashing libraries and dependencies up-to-date.
Handling Authentication Errors
When registration or login fails, provide helpful but generic error messages to the user. This prevents revealing too much information to potential attackers.
- Instead of 'User not found', say 'Invalid credentials'.
- Instead of 'Password incorrect', also say 'Invalid credentials'.
- Log detailed errors on the server side for debugging, but don't expose them to the client.
Quick Check: Password Hashing
Test your understanding of why password hashing is essential for security.
Recap: Registration & Login
In this lesson, you learned the fundamental steps for user registration and login:
- We covered the importance of password hashing using
bcryptto protect sensitive user data. - You saw how to implement both the hashing for registration and the comparison for login.
- We also touched on best practices for secure credential storage and handling authentication errors gracefully.
Next, we'll dive into implementing stateless authentication using JSON Web Tokens (JWTs).
Questions Fréquemment Posées
La leçon « Inscription et connexion des utilisateurs » est-elle gratuite ?
Oui — le texte complet de « Inscription et connexion des utilisateurs » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Node.js Backend Development Bootcamp, passe à CoddyKit PRO. Le cours Node.js Backend Development Bootcamp comprend 6 leçons au total.
Qu'est-ce que j'apprendrai dans « Inscription et connexion des utilisateurs » ?
Créez des fonctionnalités d’inscription et de connexion des utilisateurs, notamment le hachage des mots de passe et le stockage sécurisé des identifiants. Tu pratiques Node.js Backend Development Bootcamp avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.
Dois-je avoir de l'expérience pour commencer Node.js Backend Development Bootcamp ?
Aucune expérience préalable n'est requise. Node.js Backend Development Bootcamp sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 1 sur 6.
Combien de temps prend la leçon « Inscription et connexion des utilisateurs » ?
La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.
Peux-tu écrire et exécuter du code dans cette leçon Node.js Backend Development Bootcamp ?
Oui. Chaque leçon Node.js Backend Development Bootcamp inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.
Toutes les leçons de ce cours
- Inscription et connexion des utilisateurs
- Génération et validation de jetons JWT
- JWT pour une authentification sans état
- Intégration du flux de mot de passe OAuth2
- Contrôle d’accès fondé sur les rôles
- Contrôle d’accès fondé sur les rôles (RBAC)