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

sonic-widget

v2.5.0

Published

Sonic widget library for doing E-KYC

Downloads

884

Readme

version downloads jsdelivr NPM

Installation:

Sonic Widget - used to show the onboard kyc at your web 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>

or

in Angular can be used by installing package from npm

npm install sonic-widget

and adding path in angular.json

"scripts": [ "node_modules/sonic-widget/dist/index.js" ]

Implementation Details for Angular TypeScript:

Steps:-

  1. Create or open an angular TS project.

  2. Use this script tag to get access to the widget at initial html page:

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

or

it can be added in angular.json by installing the npm package

"scripts": [ "node_modules/sonic-widget/dist/index.js" ]
  1. At app.component.html, 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 sonic-web-widget at the specific place. It is used to display the sonic module with the help of this id.
<div id="sonic-web-widget"></div>
  1. Add a declaration for var sonic at TS file app.component.ts.
declare var sonic: any;
  1. Next, add the functionality to call widget in the base of onInit.
ngOnInit(): void {
	
	const config = {
		baseurl: string, // the base url of the backend server
		docModelUrl: string, // the doc model url of the document recognition process 
		maskModelUrl: string, // the mask model url of the mask detect process
		showPage: boolean, // used to show the page or not
		ipInfoKey: string, // api key to detect vpn used or not from "ipInfo.io" (Optional)
		videoURL: string, // url of video to do (e.g: demo doing kyc) (Optional)
		appId: string, // application policy identifier
		accountId: string, // account can be taken from operator axiom account
		appName: string, // representing name of the application (Optional)
		userName: string, // user prospective data
		userId: string, // user document number to identity
		email: string, // user prospective data
		phone: string, // user prospective data
		applicationNo: string, // user prospective data
		isMalay: boolean, //used to change the default language english to malay
		branchId: string, //used to identify the bank branch
		sendLogsEmail: boolean, //used to send logs through email
		blinkThreshold: number, // used for blink threshold
		objectPersonThreshold: number, // used for object Person score threshold
		objectPhoneThreshold: number, // used for object Phone score threshold
		onMessage: function (data) {}, // callback function, when api response message or error or any other actions
	};

	// get the element used in the action button 
	var container = document.getElementById('xxxx');
	// on click of element widget works
	container?.addEventListener('click', function () {
		sonic?.SonicWidget(config);
	});
}
  1. Add service worker for widget to protect the multiple calls for tensorflow. So, it will have cache to reuse it. Here, I'm adding service-worker.js file at src/assets folder. So, below steps will be based on this file path.
const CACHE_NAME = 'demo-app-ai-tensorflow-models-cache-v1';
const urlsToCache = [
    // coco ssd - tensorflow model
    // document model - teachable machine drive link or folder path 
    // mask model - teachable machine drive link or folder path 
    // face landmark model - mediapipe tasks-vision
    // hand landmark model - mediapipe tasks-vision
    // Add more model files if necessary
  ]

self.addEventListener('install', function(event) {
  // Perform install steps
  event.waitUntil(
    caches.open(CACHE_NAME)
      .then(function(cache) {
        return cache.addAll(urlsToCache);
      })
  );
});

self.addEventListener('fetch', function(event) {
    const request = event.request;
  
    // Skip caching for requests from browser extensions
    if (request.url.startsWith('chrome-extension://')) {
      return;
    }
  
    event.respondWith(
      caches.match(request)
        .then(function(response) {
          // Cache hit - return response
          if (response) {
            return response;
          }
  
          // Clone the request
          const fetchRequest = request.clone();
  
          return fetch(fetchRequest).then(
            function(response) {
              // Check if we received a valid response
              if(!response || response.status !== 200 || response.type !== 'basic') {
                return response;
              }
  
              // Clone the response
              const responseToCache = response.clone();
              // Save the response for future matching
              caches.open(CACHE_NAME)
                .then(function(cache) {
                  cache.put(request, responseToCache);
                });
  
              return response;
            }
          );
        })
    );
});
  1. Use this script tag to get access to the service worker at initial html page:
<script src="src/assets/service-worker.js"></script>

or

it can be added in angular.json by installing the npm package

"scripts": [ ..., "src/assets/service-worker.js" ]
  1. Register the service worker at your required place:
	ngAfterViewInit(): void {
		if ('serviceWorker' in navigator) {
			window.addEventListener('load', () => {
				navigator.serviceWorker.register('/demo-app/assets/service-worker.js').then(
					(registration) => {
						console.log(
							'ServiceWorker registered with scope: ',
							registration.scope
						);
					},
					(err) => {
						console.error('ServiceWorker registration failed: ', err);
					}
				);
			});
		}
	}

 

Implementation Details for Vanilla JavaScript:

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 sonic-web-widget at the last or beginning of the body tag. It is used to display the sonic module with the help of this id.
<div id="sonic-web-widget"></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
		docModelUrl: string, // the doc model url of the document recognition process
		maskModelUrl: string, // the mask model url of the mask detect process
		showPage: boolean, // used to show the page or not
		ipInfoKey: string, // api key to detect vpn used or not from "ipInfo.io" (Optional)
		videoURL: string, // url of video to do (e.g: demo doing kyc) (Optional)
		appId: string, // application policy identifier
		appName: string, // representing name of the application (Optional)
		accountId: string, // account can be taken from operator axiom account
		userName: string, // user prospective data
		userId: string, // user document number to identity
		email: string, // user prospective data
		phone: string, // user prospective data
		applicationNo: string, // user prospective data
		isMalay: boolean, //used to change the default language english to malay
		branchId: string, // branch id to identify the branch of the bank
		sendLogsEmail: boolean, //used to send logs through email
		blinkThreshold: number, // threshold used to calculate the user blinked or not, with range limit 0-1(default value is 0.35)
		objectPersonThreshold: number, // used for object Person score threshold with range limit 0-1(default value is 0.35)
		objectPhoneThreshold: number, // used for object Phone score threshold with range limit 0-1(default value is 0.35)
		onMessage: function (data) {}, // callback function, when api response message or error or any other actions
	};
	// get the element used in the action button 
	var container = document.getElementById('xxxx');
	// on click of element widget works
	container.addEventListener('click', function () {
		sonic.SonicWidget(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 sonic module. sonic.SonicWidget(config)

You can get the logs with onMessage for all actions and stages. Check with data.code

0 - info message from application 
1 - success api call
-1 - failed api call
-2 - error message from application 
-3 - configuration error message 
2 - on close application

Note:-

  • baseurl should pass as a string value. It is used as the base URL for API calls.
  • docModelUrl should pass as a string value. It is used as the base URL for document model.
  • maskModelUrl should pass as a string value. It is used as the base URL for mask model.
  • showPage is used to pass a boolean value ( true or false ). To toggle the widget page open or close.
  • ipInfoKey should pass as a string value. It is used to detect whether vpn is used or not from "ipInfo.io" with this api key and it is optional.
  • videoURL should pass as a string value as url. It is used to show the video onboard sonic kyc and it is optional.
  • accountId should pass as a string value. It is used to get the JWT token and proceed with the operator account.
  • isMalay is used to pass a boolean value ( true or false ). To toggle the widget default language english or malay.
  • branchId should pass as a string value. It is used to find bank branch available for operator account for onboard sonic kyc.
  • appId should pass as a string value. It is used to find an application policy for onboard sonic kyc.
  • appName should pass as a string value. It is used for onboard kyc application name. it is optional and default Sonic .
  • userName should pass as a string value. It is used to create an application for onboard sonic kyc.
  • userId should pass as a string value. It is used to create an application for onboard sonic kyc and to compare your identity with the document.
  • email should pass as a string value. It is used to create an application for onboard sonic kyc.
  • phone should pass as a string value. It is used to create an application for onboard sonic kyc.
  • applicationNo should pass as a string value. It is used to create an application for onboard sonic kyc.
  • sendLogsEmail is used to pass a boolean value. It is used to send logs to client email address.
  • blinkThreshold is used to pass a numerical value. It is used to check the user blinks (range 0-1 and default 0.5).
  • objectPersonThreshold is used to pass a numerical value. It is used to check the image person as object found with required score as threshold (range 0-1 and default 0.925).
  • objectPhoneThreshold is used to pass a numerical value. It is used to check the image phone/laptop as object found with required score as threshold (range 0-1 and default 0.5).
  • onMessage is a callback function. It is getting called when the API gives a message or at any configuration error. Return data is an object with its API endpoint and result.