feat: basic api setup and boilerplate

This commit is contained in:
ARJUN S THAMPI
2026-03-12 14:15:44 +05:30
commit 521a1fea79
24 changed files with 684 additions and 0 deletions

12
backend/src/utils/jwt.js Normal file
View File

@@ -0,0 +1,12 @@
import jwt from "jsonwebtoken";
import "dotenv/config";
const SECRET = process.env.JWT_SECRET;
export function generateToken(payload) {
return jwt.sign(payload, SECRET, {expiresIn: "24h"});
}
export function verifyToken(token) {
return jwt.verify(token, SECRET);
}

View File

@@ -0,0 +1,9 @@
import bcrypt from "bcryptjs";
export async function hashPassword(password) {
return bcrypt.hash(password, 10);
}
export async function comparePassword(password, hash) {
return bcrypt.compare(password, hash);
}