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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@goweekdays/auth-module

v0.2.2

Published

This file contains configuration settings for your project.

Downloads

313

Readme

config.ts

This file contains configuration settings for your project.

Environment Variables

The following environment variables are used in this configuration file. You can set these variables in a .env file or directly in your environment.

MONGO_URI

Type: string Default: "mongodb://localhost:27017"

The MongoDB connection URI.

MONGO_DB

Type: string Default: "default"

The name of the MongoDB database.

PORT

Type: number Default: 3001

The port number for the server to listen on.

SECRET_KEY

Type: string

The secret key for signing JWT tokens.

NODE_ENV

Type: string Default: "development"

The environment mode (e.g., "development", "production").

MAILER_TRANSPORT_HOST

Type: string

The host for the email transport.

MAILER_TRANSPORT_PORT

Type: number Default: 465

The port for the email transport.

MAILER_TRANSPORT_SECURE

Type: boolean Default: true

Whether the email transport uses a secure connection.

MAILER_EMAIL

Type: string

The email address for sending emails.

MAILER_PASSWORD

Type: string

The password for the email address.

ACCESS_TOKEN_SECRET

Type: string Default: "access_token_secret"

The secret key for signing access tokens.

REFRESH_TOKEN_SECRET

Type: string Default: "refresh_token_secret"

The secret key for signing refresh tokens.

ACCESS_TOKEN_EXPIRY

Type: string Default: "15s"

The expiry time for access tokens.

REFRESH_TOKEN_EXPIRY

Type: string Default: "30d"

The expiry time for refresh tokens.

APP_ACCOUNT

Type: string Default: "http:localhost:3000"

The base URL for the application.

OTP_FORGET_PASSWORD_DURATION

Type: string Default: "10 minutes"

The duration for which an OTP for password reset is valid.

OTP_USER_INVITE_DURATION

Type: string Default: "3 days"

The duration for which an OTP for user invitation is valid.

REDIS_HOST

Type: string

The host for the Redis server.

REDIS_PORT

Type: number Default: 6379

The port for the Redis server.

REDIS_PASSWORD

Type: string

The password for the Redis server.

DEFAULT_USER_EMAIL

Type: string

The default email address for creating new users.

DEFAULT_USER_PASSWORD

Type: string

The default password for creating new users.

DEFAULT_USER_FIRST_NAME

Type: string

The default first name for creating new users.

DEFAULT_USER_LAST_NAME

Type: string

The default last name for creating new users.

Example

Create a .env file in your project root with the following content:

MONGO_URI=mongodb://localhost:27017 MONGO_DB=my_database PORT=3000 SECRET_KEY=my_secret_key MAILER_TRANSPORT_HOST=smtp.example.com MAILER_TRANSPORT_PORT=587 MAILER_TRANSPORT_SECURE=false [email protected] MAILER_PASSWORD=mailer_password [email protected] DEFAULT_USER_PASSWORD=default_password DEFAULT_USER_FIRST_NAME=Default DEFAULT_USER_LAST_NAME=User

Then, you can use the config.ts file in your project.