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

@aifabrix/builder

v2.40.0

Published

AI Fabrix Local Fabric & Deployment SDK

Readme

AI Fabrix - Builder

npm version License: MIT

Install the AI Fabrix platform and test it locally. Then add external integrations or build your own applications.

Full documentation: docs/README.md (table of contents for all guides)


Why AI Fabrix Builder?

  • Build perspective: Everything is driven by declarative config and JSON schemas—no hidden logic, AI assistant–friendly.
  • Industry standards and security: Follow industry standards and high security (e.g. ISO 27k); no secrets in version control.
  • Full lifecycle in your version control: Configuration, apps, and integrations live in your own VCS (GitHub, GitLab, Azure DevOps).
  • One tool from day one: Single CLI for local infra, app and integration creation, build, run, and deploy—same workflow for apps and integrations.
  • Consistency and production readiness: Schema-driven; deploy apps and integrations to the same controller/dataplane; production-ready secrets with kv:// and Azure Key Vault.
  • Application development: Use miso-client for TypeScript and Python to talk to the dataplane and controller (see templates/applications/dataplane/README.md and the repo for usage).

Prerequisites

  • Node.js 18+ – Recommended for running the CLI.
  • AI Fabrix Azure / platform: Install from Azure Marketplace or run via Docker (e.g. aifabrix up-platform). You need full access to Docker (docker commands) where applicable.
  • Secrets before platform: Add secrets (e.g. OpenAI or Azure OpenAI) before running aifabrix up-platform; the platform reads them from the place you configure. See Infrastructure and secrets configuration.

Install

npm install -g @aifabrix/builder

Alias: You can use aifx instead of aifabrix in any command.


Goal 1: Start and test the AI Fabrix platform

Get the platform running locally so you can try it.

  1. Start local infrastructure (Postgres, Redis, optional Traefik):

    aifabrix up-infra
  2. Start the platform (Keycloak, Miso Controller, Dataplane) from community images:

    aifabrix up-platform

    Or run platform apps separately: aifabrix up-miso then aifabrix up-dataplane. Infra must be up first.

  3. Configure secrets – You need either OpenAI or Azure OpenAI:

    • OpenAI: set your API key:
      aifabrix secrets set secrets-openaiApiKeyVault <your-openai-secret-key>
    • Azure OpenAI: set endpoint and API key:
      aifabrix secrets set azure-openaiapi-urlKeyVault <your-azure-openai-endpoint-url>
      aifabrix secrets set secrets-azureOpenaiApiKeyVault <your-azure-openai-secret-key>

Secrets are stored in ~/.aifabrix/secrets.local.yaml or the file from aifabrix-secrets in your config (e.g. builder/secrets.local.yaml).

Infrastructure guide


Goal 2: External system integration

Create and deploy an external system (e.g. HubSpot): wizard or manual setup, then validate and deploy.

Example: HubSpot

  • Create: aifabrix create hubspot-test --type external (or aifabrix wizard for guided setup).
  • Configure auth and datasources under integration/hubspot-test/.
  • Validate: aifabrix validate hubspot-test
  • Deploy: aifabrix deploy hubspot-test

External systems guide · Wizard


Goal 3: Build your own application

Create, configure, and run your own AI Fabrix application locally or deploy it (create app → configure → build → run / deploy).

Your own applications


Documentation

All guides and references are listed in docs/README.md (table of contents).


Requirements

  • Docker Desktop – For running containers
  • Node.js 18+ – For running the CLI
  • Azure CLI – For deploying to Azure (optional)

License

© eSystems Nordic Ltd 2025 - All Rights Reserved

@aifabrix/builder is part of the AI Fabrix platform.