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

@jsm-mit/sultana-core-motoko-package

v0.0.4

Published

A TypeScript library for interacting with the Sultana Core Motoko actor on the Internet Computer (IC) platform.

Readme

Sultana Core Motoko Package

A TypeScript library for interacting with the Sultana Core Motoko actor on the Internet Computer (IC) platform.

Setup

1. Create dfx identities

Create the required identities:

dfx identity new superadmin
dfx identity new owner1
dfx identity new worker1
dfx identity new customer1

2. Export PEM values

Export the PEM for each identity and copy the output:

dfx identity export superadmin
dfx identity export owner1
dfx identity export worker1
dfx identity export customer1

3. Configure .env

Paste each PEM value into the corresponding variable in your .env file:

IDENTITY_PEM="-----BEGIN EC PRIVATE KEY-----
...superadmin PEM here...
-----END EC PRIVATE KEY-----"

OWNER1_PEM="-----BEGIN EC PRIVATE KEY-----
...owner1 PEM here...
-----END EC PRIVATE KEY-----"

WORKER1_PEM="-----BEGIN EC PRIVATE KEY-----
...worker1 PEM here...
-----END EC PRIVATE KEY-----"

CUSTOMER1_PEM="-----BEGIN EC PRIVATE KEY-----
...customer1 PEM here...
-----END EC PRIVATE KEY-----"

Make sure to keep newlines inside the PEM value — wrap the value in double quotes and preserve the line breaks exactly as exported.

Tests

Tests are integration tests that run against a dedicated test canister on mainnet — no local replica is used.

Prerequisites

Complete the Setup section first. Then copy .env.example to .env and fill in CANISTER_ID and all PEM values.

Available test scripts

Each script redeploys the test canister before running.

| Script | Description | |---|---| | npm run test-suite | Full integration test — covers admin, profiles, service types, salons, HR, availability, booking, search, and visits | | npm run test-tomorrow | Same as test-suite but with referenceDate set to tomorrow | | npm run test-access-restrictions | Role-based access control tests | | npm run test-migration-simple | Data migration tests |

Notes

  • Tests require an active internet connection and a valid CANISTER_ID in .env.
  • After any write (update call), the IC needs a moment to propagate state — tests include a waitFor(5000) delay before subsequent reads to avoid non-deterministic results.
  • If a test fails, the first thing to check is whether state had enough time to propagate. Rerun the test before investigating logic errors — transient propagation lag is the most common cause of false failures on mainnet.