Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

auth-guardian-api

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth-guardian-api

AuthGuardian is a versatile and easy-to-use authentication module for Node.js applications. Secure your web and API routes effortlessly with its robust features and comprehensive set of authentication methods. Whether you're building a web application, AP

  • 1.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Auth-Guardian

AuthGuradian Class

A class that handles connecting and disconnecting from MongoDB using Mongoose.

Constructor

constructor(connectionString: string): Creates an instance of the authGuradian class. The connectionString parameter should be the MongoDB connection string. Methods.

async connect(): Connects to the MongoDB database using the provided connection string.

async disconnect(): Disconnects from the MongoDB database.

Usage

const dbConnectionString = 'your-mongodb-connection-string';
const guardian = new authGuradian(dbConnectionString);

guardian.connect()
.then(() => {
console.log('Connected to MongoDB');
// Perform database operations
})
.catch(error => {
console.error('Error connecting to MongoDB:', error);
});

DynamicUserRegistration Class

A class that handles user registration, login, and accessing protected data.

Constructor

constructor(userModel: mongoose.Model, secretKey: string): Creates an instance of the DynamicUserRegistration class. The userModel parameter should be a Mongoose model for user data, and secretKey is the secret key used for JWT encoding and decoding.

Methods

async registerUser(username: string, password: string, email: string): Registers a new user.

async loginUser(username: string, password: string): Logs in a user and generates a JWT token.

async getProtectedData(req: Express.Request, res: Express.Response): Accesses protected data using a JWT token.

Usage

const UserModel = require('./path-to-your-user-model');
const secretKey = 'your-secret-key';
const dynamicUserRegistration = new DynamicUserRegistration(UserModel, secretKey);

const registrationResult = await dynamicUserRegistration.registerUser('newuser', 'password123', 'user@example.com');
console.log(registrationResult);

const loginResult = await dynamicUserRegistration.loginUser('existinguser', 'password123');
console.log(loginResult);

// Express middleware for protected route
app.get('/protected', (req, res) => {
dynamicUserRegistration.getProtectedData(req, res);
});

Keywords

FAQs

Package last updated on 15 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc