hariscs - Overview

Pinned Loading

  1. A resource for developers wanting to learn the basics of accessibility

    TypeScript 182 96

  2. A Fullstack Jobs Listing app built with Expressjs, Nextjs, MongoDB, and Typescript using turborepo

    TypeScript 3 2

  3. A fullstack Users Authentication application Built with Nestjs & Nextjs

    TypeScript

  4. 1

    import { Request, Response, NextFunction } from 'express'

    4

    export function validate_schema(schema: z.AnyZodObject) {

    5

      return (req: Request, res: Response, next: NextFunction) => {
  5. 1

    import { Request as ExpressRequest, Response, NextFunction } from 'express'

    2

    import jwt, { JwtPayload } from 'jsonwebtoken'

    3

    import { USER_SCHEMA } from '@/models/user_model'

    4

    import { log } from 'console'
  6. 1

    import mongoose, { Document, Schema } from 'mongoose'

    2

    import bcrypt from 'bcrypt'

    4

    interface IUserSchema extends Document {