goobs-auth
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

goobs-auth

The NPM repo is available here - https://www.npmjs.com/package/goobs-auth

goobs-auth is a comprehensive authentication solution for Next.js applications. It provides a flexible and customizable authentication flow that can be easily integrated into your projects.

Table of Contents

Installation

To install goobs-auth in your Next.js project, run one of the following commands:

npm install goobs-auth
# or
yarn add goobs-auth

Features

  • Flexible authentication flow with customizable steps
  • Support for email/password, email verification, and SMS verification
  • Integration with Twilio for SMS services
  • SMTP configuration for email services
  • Custom middleware for protecting routes
  • Server-side utilities for token management and verification
  • React components for different authentication steps

Usage

  1. Update your next.config.js:
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  swcMinify: true,
  transpilePackages: ['goobs-frontend', 'goobs-cache', 'goobs-auth', 'goobs-encryption'],
};

export default nextConfig;
  1. Create an authentication configuration file (e.g., .auth.json) in your project root:
{
  "userModel": {
    "getUser": {
      "path": "./path/to/getUserFunction",
      "exportName": "getUser"
    },
    "setUser": {
      "path": "./path/to/setUserFunction",
      "exportName": "setUser"
    },
    "deleteUser": {
      "path": "./path/to/deleteUserFunction",
      "exportName": "deleteUser"
    }
  },
  "database": {
    "connectScript": "// Your database connection script"
  },
  "authentication": {
    "login": [
      { "step": 1, "type": "enterEmail" },
      { "step": 2, "type": "emailAndPasswordVerification" }
    ],
    "registration": [
      { "step": 1, "type": "enterEmail" },
      { "step": 2, "type": "emailAndPasswordAndVerifyPasswordVerification" },
      { "step": 3, "type": "emailVerification" },
      { "step": 4, "type": "textMessageVerification" },
      { "step": 5, "type": "accountInfo" }
    ],
    "forgotPassword": [
      { "step": 1, "type": "enterEmail" },
      { "step": 2, "type": "emailVerification" }
    ]
  },
  "twilio": {
    "accountSid": "your_twilio_account_sid",
    "authToken": "your_twilio_auth_token",
    "phoneNumber": "your_twilio_phone_number"
  },
  "smtp": {
    "host": "your_smtp_host",
    "port": 587,
    "secure": false,
    "auth": {
      "user": "your_smtp_username",
      "pass": "your_smtp_password"
    },
    "from": "noreply@yourdomain.com"
  }
}
  1. Implement the authentication page in your Next.js app:
// pages/auth.tsx
'use client';

import React from 'react';
import { AppRouterCacheProvider } from '@mui/material-nextjs/v14-appRouter';
import { AuthPageContent } from 'goobs-auth';

export default function AuthPage() {
  return (
    <AppRouterCacheProvider>
      <AuthPageContent />
    </AppRouterCacheProvider>
  );
}
  1. Protect your routes using the authMiddleware:
// middleware.ts
import { authMiddleware } from 'goobs-auth';

export default authMiddleware;

Configuration

The .auth.json file allows you to customize various aspects of the authentication flow:

  • userModel: Define functions for user management (get, set, delete)
  • database: Specify the database connection script
  • authentication: Configure the steps for login, registration, and password recovery
  • twilio: Set up Twilio credentials for SMS services
  • smtp: Configure SMTP settings for email services

API Reference

loadAuthConfig(configPath?: string): Promise<AuthConfig>

Loads the authentication configuration from the specified path or the default locations.

authUtility(options: AuthUtilityOptions): Promise<ValidateResult | LoginResult | LogoutResult>

A comprehensive authentication utility for server components and server actions.

authSpoof(options?: AuthSpoofOptions): Promise<{ isValid: boolean, validTokens: ValidTokens }>

Generates mock authentication data for testing purposes.

Components

goobs-auth provides several React components for building the authentication UI:

  • AuthPageContent: The main authentication page component
  • EnterEmailStep: Component for entering email
  • EmailPasswordVerificationStep: Component for email and password verification
  • EmailVerificationStep: Component for email verification
  • TextMessageVerificationStep: Component for SMS verification
  • AccountInfoStep: Component for collecting additional account information

Server Actions

goobs-auth includes several server-side actions for handling authentication:

  • verifyEmail: Verifies an email address
  • sendEmail: Sends an email (e.g., for verification)
  • sendSMS: Sends an SMS message
  • verifyUser: Verifies a user's phone number

Middleware

The authMiddleware function can be used to protect routes and validate authentication tokens.

License

This project is licensed under the MIT License.

Contact

For questions, feature requests, or support, please contact:

For the quickest response, please use email. Our website is currently under development and will be shared here soon.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.3.04latest

Version History

VersionDownloads (Last 7 Days)Published
0.3.04
0.2.00
0.1.30

Package Sidebar

Install

npm i goobs-auth

Weekly Downloads

4

Version

0.3.0

License

MIT

Unpacked Size

104 kB

Total Files

26

Last publish

Collaborators

  • goobz22