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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@digital-enabler/demf-rule-editor-summary

v0.0.7

Published

Digital Enabler Rule Editor-Summay microfrontend

Downloads

26

Readme

Rule Editor-Summary microfrontend

Digital Enabler Rule Editor-Summay microfrontend

Digital Enabler - Rule Editor-Summay microfrontend

The Rule Editor-Summay microfrontend is a Rule Manager section of the editor that a summarry of the Rule creation process. The Rule Editor-Summay works within the Rule Manger tool in which it is mounted, and help you to manage a creation of a new Rule.

NOTE: See here on how to mount a microfrontend and also here to more info about Microfrontend application for Digital Enabler.

This project is also available from the following CDN.

Pre-requisites

Before you continue you need to

  • have NPM installed
  • have NodeJS installed
  • have VueJS and Vue-CLI installed
  • have a GitHub account
  • use VisualStudio 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 the command:

npm install

NOTE: When install finished, do not care about the warnings on the versions and vulnerability problems reported, and DO NOT launch the npm audit fix or npm audit fix –force commands

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

NOTE: Alternatively to the command indicated above you can use the VueUI browser interface

Configs file

To work properly the Rule Editor-Summay needs an rules-editor-config.json file with this settings:

{
  "mf": "Rule Editor",
  "api": "https://[generic_api_location]/api",
  "storageImgs": "https://[assets_storage_url]/imgs"
}

and also the common_rulemanager_config.json with contains a definition of Assets and Actions managed in this app:

{
  "mf":"RuleManager",
  "assets":[
    {
        "type":"device",
        "name":"Device",
        "icon":"mdi-devices"
    },
    ...,
  "actions":[
    {
        "type":"device",
        "name":"Device",
        "icon":"mdi-devices"
    },
    ...,
  ]
}

This json file must to be stored and setted as described here and also here.