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

@sourcenetwork/acp-js

v1.1.0

Published

A client/bridge library for interacting with the SourceHub ACP. This library provides both low-level client access and high-level helper functions for managing policies, objects, actor relationships, and performing access verification.

Readme

SourceHub ACP JS Client

A client/bridge library for interacting with the SourceHub ACP. This library provides both low-level client access and high-level helper functions for managing policies, objects, actor relationships, and performing access verification.

Features

  • Policy Management - Create and retrieve access control policies
  • Object Registration - Register objects within policy contexts
  • Actor Relationships - Manage relationships between actors and objects
  • Access Verification - Verify access permissions for specific operations
  • Key Management - Automatic wallet creation and session management via @sourcenetwork/hublet

Installation

npm install @sourcenetwork/acp-js
# or
yarn add @sourcenetwork/acp-js

Quick Start

import { 
  createPolicy, 
  registerObject, 
  setRelationship,
  verifyAccess,
  getObjectOwner 
} from '@sourcenetwork/acp-js';

// Configure global settings (optional)
if (typeof window !== 'undefined') {
  window.globalACPConfig = {
    apiUrl: 'http://localhost:1317',
    rpcUrl: 'http://localhost:26657', 
    grpcUrl: 'http://localhost:9090',
    chainId: 'sourcehub-dev',
    denom: 'uopen',
    useZeroFees: false
  };
}

// Create a policy and get the policy ID
const policyId = await createPolicy(1, policyDefinition);

// Register an object
await registerObject(policyId, 'documents', 'doc123');

// Set actor relationship
await setRelationship(policyId, 'documents', 'doc123', 'owner', 'alice');

// Verify access
const canRead = await verifyAccess(policyId, 'documents', 'doc123', 'read', 'alice');

// Get object owner
const owner = await getObjectOwner(policyId, 'documents', 'doc123');

API Reference

SourceHubACP Class

  • SourceHubACP.create(apiUrl, rpcUrl, grpcUrl, chainId, denom?, useZeroFees?) - Create with new signer
  • SourceHubACP.createFromKeys(privateKey, pubkey, compressedPubkey, ...) - Create with existing keys

Helper Functions

  • createPolicy(marshalType, policyContent): Promise<string> - Create policy and return ID
  • registerObject(policyId, resourceName, objectId): Promise<TxResponse> - Register object
  • setRelationship(policyId, resourceName, objectId, relation, targetActor): Promise<TxResponse> - Set relationship
  • deleteRelationship(policyId, resourceName, objectId, relation, targetActor): Promise<TxResponse> - Delete relationship
  • verifyAccess(policyId, resourceName, objectId, permission, actorId): Promise<boolean> - Verify access
  • getObjectOwner(policyId, resourceName, objectId): Promise<string | null> - Get owner
  • getPolicy(policyId): Promise<Policy | null> - Get policy
  • initAccount(address): Promise<FaucetResponse> - Initialize account via faucet
  • grantAllowance(address): Promise<FaucetResponse> - Grant fee allowance via faucet
  • deleteKeypair(): Promise<void> - Clear session wallet

Configuration

window.globalACPConfig = {
  apiUrl: 'https://api.sourcehub.dev',
  rpcUrl: 'https://rpc.sourcehub.dev', 
  grpcUrl: 'https://grpc.sourcehub.dev',
  chainId: 'sourcehub-1',
  denom: 'uopen',
  useZeroFees: false
};

Development

Prerequisites

  • Node.js 18+
  • Yarn (recommended) or npm

Building

# Install dependencies
yarn install
# Build both ESM and CJS versions
yarn build
# Build individual formats
yarn build:esm
yarn build:cjs

Testing

yarn test

Linting

yarn lint

Proto Generation

# Generate protobuf files
./generate-proto.sh

License

This project is licensed under the Apache License 2.0.