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

jwt-auth-mongodb

v1.0.10-beta.6

Published

JWT authentication module using mongo db to store users

Downloads

5

Readme

How to use library

Boilerplate code for authentication. It is consist from frontend and backend part. Frontend part is React component which represent Login and Sign up forms.

Backend part consist of functions used at netlify functions (Node JS).

Example usage can be found at https://github.com/pavel-kubik/mestle.

User information are stored in mongodb in collections user. Data structure

  username - unique username
  email - unique email
  password - hashed password
  salt - salt used at FE to hash password

Alt text Alt text Alt text

Future development:

[ ] Prepare form for react-native
[ ] Export sign-in and sign-up form separately for better customization
[ ] Add refresh token
[ ] Add reset password

FE

Import component AuthForm.

import AuthForm from 'jwt-auth-mongodb/dist/fe/component/AuthForm';

const [loggedUser, setLoggedUser] = useState(null); // to be defined in root component

<AuthForm //
  loggedUser={loggedUser}
  setLoggedUser={setLoggedUser}
  preSignIn={initBECall}
  preSignUp={initBECall}
  postSignIn={syncAttempts}
  postSignUp={syncAttempts}
  apiUrl={apiUrl}
  t={t}
/>

Parameters | name | description | |------|-------------| | loggedUser | mandatory - loggedUser state | | setLoggedUser | mandatory - loggedUser state setter | | preSignIn | callback before sign-in | | preSignUp | callback before sign-up | | postSignIn | callback after sign-in | | postSignUp | callback after sign-up | | apiUrl | backend API base url | | t | translation function |

BE

Should be included just under netlify directory. It is not suitable for browser code.

Auth endpoints

Next three endpoint must be defined.

POST /netlify/functions/sign_in POST /netlify/functions/sign_in_salt POST /netlify/functions/sign_up

Sign-in function

Create file at /netlify/functions/sign_in/sign_in.ts with content:

import { Handler } from '@netlify/functions';
import { signIn } from 'jwt-auth-mongodb/dist/be/auth';

export const handler: Handler = async (event, context) => {
  return await signIn(event, context);
};

Sign-in salt function

Create file at /netlify/functions/sign_in_salt/sign_in_salt.ts with content:

import { Handler } from '@netlify/functions';
import { signInSalt } from 'jwt-auth-mongodb/dist/be/auth';

export const handler: Handler = async (event, context) => {
  return await signInSalt(event, context);
};

Sign-up function

Create file at /netlify/functions/sign_up/sign_up.ts with content:

import { Handler } from '@netlify/functions';
import { signUp } from 'jwt-auth-mongodb/dist/be/auth';

export const handler: Handler = async (event, context) => {
  return await signUp(event, context);
};

Secured call

Every secured endpoint should be wrapped with validateJWT at Back-end.

import { Handler } from '@netlify/functions';
import { validateJWT } from 'jwt-auth-mongodb';

export const handler: Handler = async (event) => {
  if (event.httpMethod !== 'GET') {
    return { statusCode: 404 };
  }

  const response = await validateJWT(event, async (userData) => {
    return {
      code: 200,
      body: {
        username: userData.username
      }
    };
  });
  return response;
};

Frontend should add following header:

'x-access-token': jwt

MongoDB

You have to specify configuration of MongoDB from environmental variables.

It can be put in .env in project using this library. Configuration is automatically use with netlify dev command.

MONGODB_DATABASE=<dbname>
MONGODB_URI=mongodb://localhost:27017
TOKEN_KEY=123456789

Library Development

Test locally with npm link

With npm link. Note: Current project structure don't allow to use it.

Run npm link at library. Run npm link jwt-auth-mongodb at target project. It creates filesystem link to directory in node_modules.

Test locally with gzip dependency

At library

rm -rf dist
npm run build
npm pack

Test pack content with npm pack --dry-run.

At project using library

npm i ../jwt-auth-mongodb/jwt-auth-mongodb-1.0.6.tgz
rm -rf node_modules/.cache
npm start

Deploy library into npmjs

npm publish