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

@ce-rise/hex-core-sdk-typescript

v0.0.8

Published

Generated TypeScript SDK for CE-RISE Hex Core API

Downloads

478

Readme

CE-RISE TypeScript Software Development Kit for Hexagonal Core Service

NPM DOI

A TypeScript SDK for the CE-RISE Hex Core Service: https://codeberg.org/CE-RISE-software/hex-core-service

Install

Install from npm:

npm install "@ce-rise/hex-core-sdk-typescript"

Install a specific version:

npm install "@ce-rise/[email protected]"

Quickstart

1) Configure client and call public endpoints

import { Configuration, DiscoveryApi } from "@ce-rise/hex-core-sdk-typescript";

const config = new Configuration({
  basePath: "https://your-hex-core-service.example.org"
});

const discoveryApi = new DiscoveryApi(config);
const models = await discoveryApi.listModels();
console.log(models);

2) Configure bearer token for protected endpoints

import { AdminApi, Configuration } from "@ce-rise/hex-core-sdk-typescript";

const config = new Configuration({
  basePath: "https://your-hex-core-service.example.org",
  accessToken: process.env.HEX_CORE_TOKEN
});

const adminApi = new AdminApi(config);
const status = await adminApi.status();
console.log(status);

3) Validate and create records

import { Configuration, ModelsApi } from "@ce-rise/hex-core-sdk-typescript";

const config = new Configuration({
  basePath: "https://your-hex-core-service.example.org",
  accessToken: process.env.HEX_CORE_TOKEN
});

const modelsApi = new ModelsApi(config);

const report = await modelsApi.validateModelPayload({
  model: "model-a",
  version: "1.0.0",
  validateRequest: { payload: { x: 1 } }
});

const created = await modelsApi.createRecord({
  model: "model-a",
  version: "1.0.0",
  idempotencyKey: "my-key-123",
  createRequest: { payload: { x: 1 } }
});

console.log(report, created);

API Documentation

  • Generated docs website: https://ce-rise-software.codeberg.page/hex-core-sdk-typescript/
  • Local API docs:
    • docs/apis/AdminApi.md
    • docs/apis/DiscoveryApi.md
    • docs/apis/ModelsApi.md

License

Licensed under the European Union Public Licence v1.2 (EUPL-1.2).

Contributing

This repository is maintained on Codeberg as the canonical source of truth. The GitHub repository is a read-only mirror used for release archival and Zenodo integration.


Funded by the European Union under Grant Agreement No. 101092281 - CE-RISE.
Views and opinions expressed are those of the author(s) only and do not necessarily reflect those of the European Union or the granting authority (HADEA). Neither the European Union nor the granting authority can be held responsible for them.

(c) 2026 CE-RISE consortium.
Licensed under the European Union Public Licence v1.2 (EUPL-1.2).
Attribution: CE-RISE project (Grant Agreement No. 101092281) and the individual authors/partners as indicated.

Developed by NILU (Riccardo Boero - [email protected]) within the CE-RISE project.