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

@nexr-cloud/modeler

v0.1.1

Published

Open NEXr Modeler Core Engine - A React component library for cloud architecture diagrams.

Downloads

228

Readme

@nexr-cloud/modeler

The Definitive Engine for Enterprise Cloud Architecture Diagrams.

@nexr-cloud/modeler is a high-fidelity React component library designed specifically for generating and rendering complex, production-ready cloud architecture diagrams. Built with a focus on SAP BTP reference architectures, it provides a structured, JSON-driven way to visualize enterprise ecosystems with 100% consistency.


🚀 Key Features

  • Enterprise-Grade Rendering: High-fidelity SVG-based diagrams with support for complex service meshes.
  • Provider-Centric Design: Native support for SAP BTP architectural patterns, including multi-zone layouts.
  • JSON-Driven: Entirely state-driven architecture. Define your nodes and connections in JSON, and the modeler handles the rest.
  • Interactive Canvas: Built-in support for zooming, panning, and high-quality image exports.
  • Dynamic Icons: Intelligent icon mapping for hundreds of cloud services (SAP, AWS, Azure, GCP).
  • Responsive & Modern: Optimized for React 18/19 and built with performance in mind.

📦 Installation

Install the package via your preferred package manager:

# Using bun (recommended)
bun add @nexr-cloud/modeler

# Using npm
npm install @nexr-cloud/modeler

# Using yarn
yarn add @nexr-cloud/modeler

🛠️ Usage

1. Import Styles and Component

Import the core component and its accompanying CSS in your application:

import { NexrModeler } from '@nexr-cloud/modeler';
import '@nexr-cloud/modeler/style.css';

2. Implementation Example

Render a structured SAP BTP architecture by providing a simple JSON definition:

import { NexrModeler } from '@nexr-cloud/modeler';

const ArchitecturePreview = () => {
  const architecture = {
    title: "SAP BTP Extension Suite",
    sapLayer: {
      subAccount: {
        leftTop: [
          {
            id: "integration-hub",
            title: "Integration Services",
            nodes: [
              { id: "is-1", text: "Integration Suite", icon: "sap-integration-suite_sd" },
              { id: "am-1", text: "API Management", icon: "sap-api-management_sd" }
            ]
          }
        ]
      }
    },
    connections: [
      { from: "is-1", to: "am-1", label: "OData Integration", type: "thick", semanticType: "positive" }
    ]
  };

  return (
    <div style={{ width: '100%', height: '600px' }}>
      <NexrModeler 
        provider="sap"
        architectureJson={architecture}
      />
    </div>
  );
};

📜 License

Licensed under the Apache License, Version 2.0. See the LICENSE file for details.


🌐 Community & Support


© 2026 NEXr Cloud. All rights reserved.