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

@octoguide/auth-utils

v1.1.5

Published

<dl> <dt><a href="#isAuthenticated">isAuthenticated</a></dt> <dd><p>check if the session user is authenticated</p> </dd> <dt><a href="#setStorageItem">setStorageItem</a></dt> <dd><p>generic set storage item - works in a dom context</p> </dd> <dt><a href="

Downloads

9

Readme

Constants

isAuthenticated

check if the session user is authenticated

Kind: global constant

setStorageItem

generic set storage item - works in a dom context

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | item | string | the storage item to set | | value | string | the storage item value |

getStorageItem

generic get storage item - works in a dom context

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | item | string | the storage item to get |

removeStorageItem

generic remove storage item - works in a dom context

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | item | string | the storage item to remove |

getAuth

get the auth storage item value - works in a dom context

Kind: global constant

setAuth

set the auth item in storage - works in a dom context

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | auth | Object | the storage object to set |

setIdentity

set the identity item in storage - works in a dom context

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | identity | Object | the storage object to set |

getIdentityRole

get the identity item role value - works in a dom context

Kind: global constant

getIdentityId

get the identity item id value - works in a dom context

Kind: global constant

getIdentityOrgId

get the identity item orgid value - works in a dom context

Kind: global constant

getIdentityName

get the identity item role name - works in a dom context

Kind: global constant

getSelectedPortfolio

get the identity item portfolio value - works in a dom context

Kind: global constant

invalidateSession

clear all session values, big reset - works in a dom context

Kind: global constant

isTokenExpired

checks if the token has expired checking against the current datetime

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | token | Object | the token to validate |

extractTokenId

when the id is returned from post requests - extract the id to put back into the payload

Kind: global constant

isSuperUser

checks if the current identity role is super user

Kind: global constant

isAdmin

checks if the current identity role is admin

Kind: global constant

isOrg

checks if the current identity id is the organaisation - not an employee

Kind: global constant

getRoleName

gets the current identity role

Kind: global constant

generateGuid

generate a unique record uid

Kind: global constant

getBasicAuthorizationHeader

generate a basic auth header

Kind: global constant

| Param | Type | Description | | --- | --- | --- | | username | string | the username to use | | password | string | the password to use |