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

@volo/abp.ng.lowcode

v10.4.0

Published

Angular package for ABP Low Code dynamic entities: list, create/edit modal, and UI definitions from the backend.

Readme

@volo/abp.ng.lowcode

Angular package for ABP Low Code dynamic entities: list, create/edit modal, and UI definitions from the backend.

Testing the package

1. Unit tests (Jest)

From the ng-packs root:

yarn nx test lowcode
# or
npx nx test lowcode

The package has Jest configured; add *.spec.ts files under src/lib (e.g. for services or components) to run real tests. Without any spec files, the test run may report no tests.

2. Manual testing with dev-app

To try the components in the browser with a real backend:

  1. Backend: Run an app that hosts the ABP Low Code module (e.g. Volo.Abp.LowCode from volo/abp/low-code) so that these APIs are available:

    • GET/POST/PUT/DELETE .../api/low-code/entities/{entityName}
    • GET .../api/low-code/ui/entities/{entityName}/definition
    • GET .../api/low-code/ui/menu-items
  2. Frontend: From ng-packs root:

    yarn start
    # or: npx nx serve dev-app

    Point the dev-app to your backend URL in apps/dev-app/src/environments/environment.ts (apis.default.url).

  3. Route: Open the lowcode page in the app (e.g. /lowcode or /lowcode/YourEntityName). The dev-app includes a sample route that renders abp-dynamic-entity-list; use the entity name that exists in your backend model.

  4. Login: Ensure you are logged in and have permission to call the low-code APIs.

3. Build check

To ensure the library builds:

yarn nx build lowcode

Usage in your app

import { DynamicEntityListComponent } from '@volo/abp.ng.lowcode';

// In your route or template:
// <abp-dynamic-entity-list entityName="YourEntityName" />

Export from @volo/abp.ng.lowcode: models, DynamicEntityService, DynamicEntityUIService, DynamicEntityListComponent, DynamicEntityModalComponent.