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

@appstrax/auth

v0.0.37

Published

The @appstrax/auth frontend javascript library

Downloads

47

Readme

@appstrax/auth

This library contains a simple auth service, which allows you to easily integrate authentication into your web applications.

Getting Started

Create your Appstrax Auth API here: https://codecapsules.io/.

Installation

npm install @appstrax/auth --save

Setup

Initialize the auth library:

// import the auth library
import { auth } from '@appstrax/auth';

// initialize the auth service
const apiUrl = 'YOUR API URL HERE'; // eg. appstrax-auth-api-snidtu.codecapsules.co.za
auth.init(apiUrl);

Registration

import { auth } from '@appstrax/auth';

const registerDto: RegisterDto = {
  email: "[email protected]",
  password: "<password>",
  data: {
    // any additional/custom user fields
    name: "Joe",
    surname: "Soap",
    ...
  }
};

auth.register(registerDto).then((res: AuthResult) => {
  console.log(res.user);
}).catch(err => {
  console.log(err.message);
});

Login

import { auth } from '@appstrax/auth';

const loginDto: LoginDto = {
  email: "[email protected]",
  password: "<password>"
};

auth.login(loginDto).then((res: AuthResult) => {
  console.log(res.status);
  console.log(res.user);
}).catch(err => {
  console.log(err.message);
});

Forgot Password

import { auth } from '@appstrax/auth';

const forgotDto: ForgotPasswordDto = {
  email: "[email protected]"
};

auth.forgotPassword(forgotDto).then((message: MessageDto) => {
  console.log(message.message);
}).catch(err => {
  console.log(err.message);
});

An email will be sent to the user with a password reset code, this code is only valid for 24 hours.

Reset Password

import { auth } from '@appstrax/auth';

const resetDto: ResetPasswordDto = {
  email: "[email protected]",
  code: "<code>", // the code emailed to the user
  password: "<password>" // the user's new password
};

auth.resetPassword(resetDto).then((message: MessageDto) => {
  console.log(message.message);
}).catch(err => {
  console.log(err.message);
});

The password is now reset, however the user will now need to login with their new password.

Change Password

import { auth } from '@appstrax/auth';

const changePasswordDto: ChangePasswordDto = {
  password: "<current password>"
  newPassword: "<new password>"
};

auth.changePassword(changePasswordDto).then((message: MessageDto) => {
  console.log(message.message);
}).catch(err => {
  console.log(err.message);
});

Users can only change their password if they are already authenticated.

Update User Data/Profile

import { auth } from '@appstrax/auth';

const data: any = {
  // any additional/custom user fields
  name: "Joe",
  surname: "Soap",
  fancy: "field",
  ...
}

auth.saveUserData(data).then((user: User) => {
  console.log(user);
}).catch(err => {
  console.log(err.message);
});

Users can only update their data if they are already authenticated.

Error Messages

enum AuthErrors {
  // registration errors
  emailAddressAlreadyExists = 'emailAddressAlreadyExists',
  badlyFormattedEmailAddress = 'badlyFormattedEmailAddress',
  noPasswordSupplied = 'noPasswordSupplied',

  // login errors
  invalidEmailOrPassword = 'invalidEmailOrPassword',
  userBlocked = 'userBlocked',
  invalidTwoFactorAuthCode = 'invalidTwoFactorAuthCode',

  // forgot/reset password errors
  emailAddressDoesNotExist = 'emailAddressDoesNotExist',
  invalidResetCode = 'invalidResetCode',

  // unknown errors
  unexpectedError = 'unexpectedError',
}

Fetch Users

Public Availability

By default the Auth API restricts public access to fetching other users (users other than the currently authenticated user).

In order to activate public access to fetch users, in the administrative panel click on the following:

  • Configuration tab
  • Public Access
  • Toggle 'Allow Public Access'

Querying Users

You can query other users with the UserService.

import { users } from '@appstrax/auth';

Use the find() function on users (the UserService) to query/fetch other users. The find() function takes a FetchQuery as an argument:

interface FetchQuery {
  // Conditions to query data
  where?: Where;
  // ASC, DESC Order
  order?: Order;
  // Pagination variables
  offset?: number;
  limit?: number;
}

the where field in a FetchQuery should be made up as follows:

{
 where: {
    [Operator.AND]: [{ a: 5 }, { b: 6 }],  // (a = 5) AND (b = 6)
    [Operator.OR]: [{ a: 5 }, { b: 6 }],   // (a = 5) OR (b = 6)
    <someAttribute>: {
      [Operator.EQUAL]: 3,                 // = 3
      [Operator.NOT_EQUAL]: 20,            // != 20
      [Operator.OR]: [5, 6],               // (someAttribute = 5) OR (someAttribute = 6)
      [Operator.GT]: 6,                    // > 6
      [Operator.GTE]: 6,                   // >= 6
      [Operator.LT]: 10,                   // < 10
      [Operator.LTE]: 10,                  // <= 10
      [Operator.IN]: [1, 2],               // IN [1, 2]
      [Operator.LIKE]: 'hat',              // LIKE 'hat'
      [Operator.NOT_LIKE]: 'hat',          // NOT LIKE 'hat'
    }
  }
}

Available Operators

enum Operator {
  // Equal To Operator
  EQUAL = 'EQUAL',
  // Not Equal To Operator
  NOT_EQUAL = 'NOT_EQUAL',
  // And Operator
  AND = 'AND',
  // Or Operator
  OR = 'OR',
  // Greater Than Operator
  GT = 'GT',
  // Greater Than or Equal To Operator
  GTE = 'GTE',
  // Less Than Operator
  LT = 'LT',
  // Less Than or Equal To Operator
  LTE = 'LTE',
  // Like Operator
  LIKE = 'LIKE',
  // Not Like Operator
  NOT_LIKE = 'NOT_LIKE',
  // In Operator
  IN = 'IN',
}

Examples

A query to search for Users:

WHERE

  • email is 'LIKE' 'Joe'

ORDER BY

  • email ascending

Return the first 5

import { users, Operator, OrderDirection  } from '@appstrax/auth';

...

let search = 'Joe';

const result = await users.find({
  where: { email: { [Operator.LIKE]: search } },
  order: { email: OrderDirection.ASC },
  offset: 0,
  limit: 5,
});

const totalUsers = result.count;
const fetchedUsers = result.data;

A query to search for Users:

WHERE

  • email is 'LIKE' 'Joe'
  • 'OR' name is 'LIKE' 'Joe'
  • 'OR' surname is 'LIKE' 'Joe'

No order

RETURN

  • elements 6 to 10
import { users, Operator } from '@appstrax/auth';

...

let search = 'Joe';

const result = await users.find({
  where: {
    [Operator.OR]: [
      { email: { [Operator.LIKE]: search } },
      { name: { [Operator.LIKE]: search } },
      { surname: { [Operator.LIKE]: search } },
    ],
  },
  offset: 1,
  limit: 5,
});

const totalUsers = result.count;
const fetchedUsers = result.data;