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

axiom-verify

v1.0.0

Published

Axiom user verify widget library

Downloads

9

Readme

version downloads jsdelivr NPM

Installation:

AXIOM Verify - used to show the axiom protect 2.0 user login at the current page itself.

Use this script tag to get access to the widget.

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.min.js"></script>

Implementation:

Steps:-

  1. Create or open an html file.

  2. Add a button with the id xxxx. It is used to call the widget by on click event.

<button id="xxxx">Open</button>
  1. Add a div tag with the id axiom-embedded-verify at the last or beginning of the body tag. It is used to display the axiom module with the help of this id.
<div id="axiom-embedded-verify"></div>
  1. Add a Script tag to the head tag or body tag. And use the latest version.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.min.js"></script>
  1. Next, add the script tag at a necessary place. But add below the widget script.
<script>
	const config = {
		baseurl: string, // the base url of the backend server
		showPage: boolean, // used to show the page or not
		changeToPopup: boolean, // widget shows by popup modal default is false
		operatorEmail: string, // axiom operator account details for token
		operatorPassword: string, // axiom operator account details for token
		appId: string, // app id can be taken from app available from your operator account
		userId: string, // user id can be taken from app assigned to user
		onResponse: function (data) {}, // callback function, when api response
		onError: function (data) {}, // callback function, when api error
		onClose: function (data) {} // callback function, when page close
	};
	// get the element used in the action button 
	var container = document.getElementById('xxxx');
	// on click of element widget works
	container.addEventListener('click', function () {
		axiom_verify.AXIOMVerify(config);
	});
</script>

Here, the config variable is used to pass the data. And the container variable is to get the dom element of the id xxxx button and add it to the event listener. It checks if the button is clicked and sends the config object data to the axiom_verify module. axiom_verify.AXIOMVerify(config)

Note:-

  • baseurl should pass as a string value. It is used as the base URL for API calls.
  • showPage is used to pass a boolean value ( true or false ). To toggle the widget page open or close.
  • changeToPopup is used to pass a boolean value ( true or false ). To toggle the widget as a popup or inline page.
  • operatorEmail should pass as a string value. It is used to get the JWT token and to proceed with your operator account.
  • operatorPassword should pass as a string value. It is used to get the JWT token and to proceed with your operator account.
  • appId should pass as a string value. It is used to login with a specific app.
  • userId should pass as a string value. It is used to get the token type and verify user.
  • onResponse is a callback function. It is getting called when the API gives a successful response. Return data is an object with its API endpoint and result.
  • onError is a callback function. It is getting called when the API gives an error message or at any configuration error. Return data is an object with its API endpoint and result.
  • onClose is a callback function. It is getting called when the page/popup gets closed. Return data is an object with its action and result.