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

hxb-sdk

v1.0.11

Published

### - Started: - Install: ```bash - yarn install ``` - Building: ```bash - yarn run build ``` - create file ```.env``` from ```.env.test``` then Config file testing at ```.env```: ```bash - cp .env.test .env

Readme

Hexabase-sdk

- Started:

  • Install:
      - yarn install
  • Building:
      - yarn run build
  • create file .env from .env.test then Config file testing at .env:
      - cp .env.test .env
      - config enviroment in .env file
  • Run test hexabase client:
      - yarn run test:client
      or
      - yarn jest src/hexabase.test.ts
  • Run test hexabase application:
      - yarn run test:application
      or
      - yarn jest src/lib/packages/application/application.test.ts
  • Run test hexabase auth:
      - yarn run test:dataauthstore
      or
      - yarn jest src/lib/packages/auth/auth.test.ts
  • Run test hexabase user:
      - yarn run test:user
      or
      - yarn jest src/lib/packages/user/user.test.ts
  • Run test hexabase workspace:
      - yarn run test:workspace
      or
      - yarn jest src/lib/packages/workspace/workspace.test.ts
  • Run test hexabase datastore:
      - yarn run test:datastore
      or
      - yarn jest src/lib/packages/datastore/datastore.test.ts

- Initialize for SDK Packge

- Requirement:

  • credentials must obtain from hexabase:
      - url
      - token

- Using SDK

  • Configuration:
      import { Hexabase } from 'hexabase-sdk'
    
      const hexabase = Hexabase.createClient({url, token});

functions created:

  auth
    - userInfoAsync: get user info by token
    - loginAsync: login with email password
  
  workspace
    - setCurrentWsAsync: set workspace current with id
    - createWorkspaceAsync: created workspace 
    - getWorkspacesAsync: get workspaces and current workspace id
    - getCurrentWorkspaceAsync: get workspaces id current
    - getPasswordPolicyAsync: get workspace password policy
    - getFunctionalityAsync: get workspace functionlity
    - getUsageAsync: get workspace usage
    - getGroupChildrenAsync: get workspace childrent in group
    - getTaskQueueListAsync: get queue list
    - getTaskQueueStatusAsync: get task queue status

  application
    - getAppAndDsAsync: get app and ds
    - createAppAsync: create app

  datastore
    - getFieldSettingsAsync: get field setting in Ds
    - getActionsAsync: get actions in Ds
    - getStatusesAsync: get statuses in Ds
    - getActionSettingAsync: get field action setting in Ds

  item
    - getItemsAsync: get items in datastore
    - getItemsHistories: get items histories
    - createItemId: create Itemid
    - createNewItem: create new item
    - getItemRelated: get item related in datastore

  user
    - userRegisterAsync: get user register info by confirmationId
    - userPasswordExAsync: check user password is expiry
    - userConfirmAsync: get info user confirm by confirmationId