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 🙏

© 2025 – Pkg Stats / Ryan Hefner

demf-mashups-editor

v3.1.1

Published

The Mashups Editor microfrontend provides a visual node-based editor for creating and modifying mashups using Vue Flow. Allows users to drag-and-drop operators, connect them, and configure their properties. Integrates with the mashups editor appbar for a

Downloads

224

Readme

Digital Enabler Mashups Editor

The Mashups Editor microfrontend provides a visual node-based editor for creating and modifying mashups using Vue Flow. Allows users to drag-and-drop operators, connect them, and configure their properties. Integrates with the mashups editor appbar for a complete mashup editing experience.

Built with Vue 3, Vuetify 3, and Vite. Designed for Single-SPA integration.

📌 See also:


📦 Installation

Via CDN

This project is available from the following CDN:

https://cdn.jsdelivr.net/npm/demf-mashups-editor@latest/mf-app.js

Add it to your root-config import map:

{
  "imports": {
    "demf-mashups-editor": "https://cdn.jsdelivr.net/npm/demf-mashups-editor@latest/mf-app.js"
  }
}

🚀 Quick Start

Prerequisites

Before you continue you need to have:

  • A Digital Enabler root-config application running
  • Single-SPA layout engine configured
  • A configuration file for the Mashups Editor (see below)

Integration Steps

1. Add to Import Map

In your root-config importmap.json:

{
  "imports": {
    "demf-mashups-editor": "https://cdn.jsdelivr.net/npm/demf-mashups-editor@latest/mf-app.js"
  }
}

For local development:

{
  "imports": {
    "demf-mashups-editor": "http://localhost:9012/mf-app.js"
  }
}

2. Register in Layout

In your root-config layout HTML:

<application 
  name="demf-mashups-editor" 
  props="realm, palette, mashups-editor-config">
</application>

3. Create Configuration File

Create a mashups-editor-config.json file with these settings:

{
  "name": "mashups-editor",
  "mf": "demf-mashups-editor",
  "api": "https://[generic_api_location]/api"
}

This JSON file must be:

  • Stored in a location accessible to the root-config
  • Included in the root-config's remote configuration
  • Passed as the mashups-editor-config prop to the microfrontend

📖 For details on configuration management, see:


⚙️ Configuration

The Mashups Editor microfrontend receives a configuration object via the mashups-editor-config prop:

{
  "name": "mashups-editor",
  "mf": "demf-mashups-editor",
  "api": "https://your-api-endpoint.com/api"
}

Configuration Fields

| Field | Type | Required | Description | |-------|------|----------|-------------| | mf | string | Yes | Microfrontend identifier (use "demf-mashups-editor") | | api | string | Yes | Base URL for API calls |

Additional Props from Root-Config

The microfrontend also receives these props automatically from the root-config:

  • realm: Current tenant/realm identifier
  • palette: Dynamic theme colors (primary, secondary, etc.)

These props are used to:

  • Apply consistent theming across the platform
  • Configure tenant-specific behavior
  • Adapt the Mashups Editor appearance to the current application theme

🛠️ Development

Prerequisites

Before you continue you need to have:

  • NPM installed
  • Node.js (v22+ or v24.8+) installed
  • Vue.js and Vite knowledge
  • A GitHub account
  • Visual Studio Code or IntelliJ IDEA as your development IDE

Project Management

Installation

Open a Terminal window in the project folder and go inside the app folder, then launch:

npm install

NOTE: When install finishes, do not worry about warnings on versions and vulnerability problems reported. DO NOT launch npm audit fix or npm audit fix --force commands.

Development Server (with hot-reload)

npm run dev

This command:

  1. Generates Vuetify locales automatically (via predev script)
  2. Builds the microfrontend in watch mode
  3. Starts a preview server at http://localhost:9012

The microfrontend will be available at: http://localhost:9012/mf-app.js

Build for Production

npm run build

This command:

  1. Generates Vuetify locales automatically (via prebuild script)
  2. Creates an optimized production build in the dist/ folder
  3. Outputs a SystemJS bundle ready for deployment

Code Quality

npm run lint        # Lint and fix files with ESLint
npm run format      # Format code with Prettier

NOTE: Alternatively to the commands indicated above you can use the Vue UI browser interface.


🌐 Internationalization

The Mashups Editor microfrontend supports multiple languages through vue-i18n with automatic Vuetify locale integration.

How It Works

  • Locale files are stored in src/locales/*.json (e.g., en.json, it.json)
  • The script scripts/generate-vuetify-locales.mjs automatically scans these files
  • Matching Vuetify translations are imported and merged
  • The active language is read from localStorage.getItem('lang') (defaults to en)

Supported Languages

The Mashups Editor includes translations for the languages defined in src/locales/:

  • English (en)
  • Italian (it)
  • [Add other languages as needed]

Adding a New Language

  1. Create a new file: src/locales/<code>.json (e.g., es.json)
  2. Add your translations following the existing structure
  3. Run npm run dev or npm run build
  4. The generator will automatically include Vuetify translations for that language

🎨 Features

  • Dynamic theming: Automatically adapts to the palette passed from root-config
  • Multi-language support: Full internationalization with vue-i18n
  • Responsive design: Works seamlessly on mobile, tablet, and desktop
  • Material Design: Built with Vuetify 3 components and Material Design Icons
  • Consistent branding: Shows uniform Mashups Editor across all Digital Enabler services
  • Platform information: Displays version, copyright, and relevant links

📁 Project Structure

demf-mashups-editor/
├── app/
│   ├── src/
│   │   ├── App.vue                    # Main component
│   │   ├── main.js                    # Entry point
│   │   ├── components/                # Mashups Editor components
│   │   ├── locales/
│   │   │   ├── i18n.js               # i18n configuration
│   │   │   ├── en.json               # English translations
│   │   │   ├── it.json               # Italian translations
│   │   │   └── vuetify-generated.js  # Auto-generated Vuetify locales
│   │   ├── plugins/
│   │   │   └── vuetify.js            # Vuetify configuration
│   │   ├── router/
│   │   └── store/
│   ├── scripts/
│   │   └── generate-vuetify-locales.mjs
│   ├── public/
│   ├── dist/                          # Build output
│   ├── package.json
│   ├── vite.config.js
│   └── eslint.config.js
├── docker/
└── README.md

🔍 Troubleshooting

Mashups Editor not visible

  • Verify the import map includes demf-mashups-editor
  • Check the layout HTML has the <application> tag with correct name
  • Ensure the bundle is accessible at the configured URL
  • Look for console errors in the browser developer tools

Configuration not working

  • Check that mashups-editor-config prop is passed in the layout
  • Verify the configuration JSON structure matches the expected format
  • Ensure the root-config is loading the remote configuration correctly
  • Check console for warnings about missing configuration

Styling issues

  • Ensure the palette prop is being passed from root-config
  • Verify Material Design Icons fonts are loaded
  • Check that Vuetify theme configuration is correct
  • Clear browser cache and reload

API connection errors

  • Verify the api field in mashups-editor-config.json is correct
  • Check network tab for failed API requests
  • Ensure CORS is properly configured on the backend
  • Verify the API endpoint is accessible from the browser

Development server not starting

  • Check that port 9012 is not already in use
  • Verify Node.js version is compatible (v22+ or v24.8+)
  • Try removing node_modules and running npm install again
  • Ensure all dependencies are correctly installed

📚 Tech Stack

Runtime Dependencies

  • Vue 3 (^3.5.22) - Progressive JavaScript framework
  • Vuetify 3 (^3.10.7) - Material Design component library
  • Single-SPA Vue (^3.0.1) - Single-SPA integration for Vue
  • Vue Router (^4.6.3) - Official router for Vue.js
  • Vue i18n (^9.14.5) - Internationalization plugin
  • Vuex (^4.1.0) - State management
  • Axios (^1.13.0) - HTTP client
  • Material Design Icons (^7.4.47) - Icon library

Development Dependencies

  • Vite (^7.1.12) - Next generation frontend tooling
  • ESLint (^9.38.0) - Code linting
  • Prettier (^3.6.2) - Code formatting
  • Vite Plugin Vue DevTools (^8.0.3) - Vue DevTools integration
  • Concurrently (^9.2.1) - Run multiple commands

For complete dependencies, see package.json.


📖 Related Documentation


📄 License

This project is part of Digital Enabler Ecosystem.

© 2025 Engineering Ingegneria Informatica S.p.A.


🆘 Support

For support, questions, or issues: