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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ixolist-sessions-widget

v1.2.3

Published

The package is a VueJS component capable of organizing blockchain authorization in a Quasar application with the ability to manage sessions

Readme

Ixolist Sessions Widget

The package is a VueJS component capable of organizing blockchain authorization in a Quasar application with the ability to manage sessions

Installation

Use

npm i ixolist-sessions-widget

or

yarn add ixolist-sessions-widget

In-app installation

  1. Create boot file with following code
import  plugin  from  "ixolist-sessions-widget";
export  default ({ app, store }) => {
  app.use(plugin, { store });
};

and connect it in quasar.config.js

boot: [
  *somewhere here*
],
  1. In store/index.js you need to connect the internal storage of the component, it is called sessions

Example:

import { createStore } from "vuex";
import sessions from "ixolist-sessions-widget/src/store/sessions";
import  VuexPersistence  from  "vuex-persist";

export  const  Store = createStore({
  modules: {
    ...
    sessions
  },
  plugins: [new  VuexPersistence({ supportCircular:  true }).plugin],
  strict:  false,
});

export  default  function (/* { ssrContext } */) {
  return  Store;
}
  1. Inside the component it will be connected like a regular VueJS component
import { IxolistSessionsWidget } from  "ixolist-sessions-widget";
components: {
  IxolistSessionsWidget,
},

and in the template

IxolistSessionsWidget(:networksList="you_networks_variable")

The networks array should consist of objects of the following type

Example:

[
  {
    label: "Jungle v.4",
    name: "jungle4",
    logo: "/assets/jungle4-logo.png",
    chainId: "73e4385a2708e6d7048834fbc1079f2fabb17b3c125b146af438971e90716c4d",
    nodeProtocol: "https",
    nodePort: 443,
    nodeHost: "jungle4.cryptolions.io",
    contractAccount: "icoicoicoic1",
    organizationsAccount: "orgorgorgorg",
    userContractAccount: "useruseruser",
    hyperionApi: "https://jungle4.cryptolions.io",
    explorerApiAccount: "https://jungle4.cryptolions.io/v2/explore/account/",
    explorerApiTransaction:
      "https://jungle4.cryptolions.io/v2/explore/transaction/",
    freeFaucetUrl: "https://monitor4.jungletestnet.io/",
    powerUpUrl: "https://monitor4.jungletestnet.io/#powerup"
  }
]
  1. Translations

For the package to work correctly, you need to add the following translations to the i18n files of your application

en-US:

components: {
  sessions: {
    connectWallet: "Connect a Wallet",
    guestMode: "Guest mode",
    asAGuestYouHave:
      "As a guest you have full access to all content. However, you cannot participate until you connect.",
    supportedNetworks: "Supported Networks"
  }
}

ru:

components: {
  sessions: {
    connectWallet: "Подключить кошелек",
    guestMode: "Гостевой режим",
    asAGuestYouHave:
      "Будучи гостем, вы имеете полный доступ ко всему контенту. Однако вы не сможете участвовать, пока не подключитесь.",
    supportedNetworks: "Поддерживаемые сети"
  }
}

zh-CN:

components: {
  sessions: {
    connectWallet: "连接钱包",
    guestMode: "访客模式",
    asAGuestYouHave:
      "作为访客,您可以完全访问所有内容。但是,在连接之前您将无法参与",
    supportedNetworks: "支持的网络"
  }
}

Adviсe

Since the component contains its own store, it is important and necessary to link to it inside the application.

Briefly its structure looks like this

...
getters: {
  account: (state) =>  state.account,
  ualName: (state) =>  state.ualName,
  userData: (state) =>  state.userData,
  sessions: (state) =>  state.sessions,
  activeSession: (state) =>  state.activeSession,
  isAuthenticated: (state) =>  state.account !== null,
  networks: (state) => state.networks
}
...