npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

election-shared-auth-package_v2

v0.1.7

Published

A shared authentication package for NestJS applications providing JWT and Google OAuth strategies, guards, and decorators for the election system microservices

Readme

Election Shared Auth Package V2

A comprehensive authentication package for NestJS applications, specifically designed for the election system microservices. This package provides JWT and Google OAuth authentication strategies, guards, decorators, and services.

Features

  • 🔐 JWT Authentication Strategy
  • 🌐 Google OAuth 2.0 Strategy
  • 🛡️ Authentication Guards
  • 🎨 Easy-to-use Decorators
  • 📦 Ready-to-use Auth Module
  • 🔧 TypeScript Support

Installation

npm install election-shared-auth-package_v2

Quick Start

1. Import the Auth Module

import { Module } from '@nestjs/common';
import { AuthModule } from 'election-shared-auth-package_v2';

@Module({
  imports: [AuthModule],
  // ... your other module configuration
})
export class AppModule {}

2. Use the Auth Decorator

import { Controller, Get } from '@nestjs/common';
import { Auth, User } from 'election-shared-auth-package_v2';

@Controller('protected')
export class ProtectedController {
  @Get('profile')
  @Auth('localJwt') // Apply JWT authentication
  getProfile(@User() user: any) {
    return { user };
  }
}

Available Components

Decorators

@Auth(strategy)

Applies authentication guard with the specified strategy.

@Auth('localJwt') // For JWT authentication
@Auth('google') // For Google OAuth

@User(property?)

Extracts user information from the request.

@User() user: any // Get entire user object
@User('id') userId: string // Get specific user property

Strategies

  • JwtStrategy: Handles JWT token validation
  • GoogleStrategy: Handles Google OAuth 2.0 authentication

Guards

  • GoogleOAuthGuard: Guard for Google OAuth authentication

Services

  • AuthService: Core authentication service with utility methods

Configuration

Make sure to configure your environment variables:

# JWT Configuration
JWT_SECRET=your-jwt-secret
JWT_EXPIRES_IN=3600s

# Google OAuth Configuration
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_CALLBACK_URL=your-callback-url

API Documentation

This package automatically adds Swagger/OpenAPI documentation for authentication endpoints:

  • Bearer token authentication support
  • Cookie authentication support
  • Proper error responses

Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

License

This project is licensed under the MIT License.