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

@avora-labs/meta-forge

v1.8.0

Published

AvoraMetaForge — A meta-driven Angular framework. Define entire applications through structured TypeScript metadata.

Downloads

2,117

Readme

✨ What is AvoraMetaForge?

AvoraMetaForge flips the traditional Angular development model upside down. Instead of writing endless HTML templates and boilerplate component classes, you define your entire application—from data tables and dynamic forms to dashboards and interactive dialogs—using strictly typed TypeScript JSON objects (metadata).

The core engine reads this metadata and natively renders beautiful, fully responsive, and highly interactive UI components on the fly. It drastically reduces boilerplate and allows developers to focus on pure business logic.


🚀 Features

  • Zero-Boilerplate UI: Build complex dashboards without writing a single line of HTML.
  • Intelligent Renderers: Out-of-the-box support for Forms, Tables, Cards, Accordions, Stats Grids, Dialogs, and Page Headers.
  • Built-in State Management: The Action Dispatcher handles everything from API calls to dialog triggers seamlessly.
  • Layout Engine: Native vertical and horizontal shell layouts designed for SaaS applications.
  • Highly Extensible: Inject your own custom renderers directly into the core engine.

📦 Installation

To get the most out of AvoraMetaForge, we highly recommend using our companion CLI, which handles automatic installation, wiring, and scaffolding!

The Easy Way (Using the CLI)

npm install -g @avora-labs/cli
avora init

The Manual Way

npm install @avora-labs/meta-forge

Then, inject the providers into your app.config.ts:

import { ApplicationConfig } from '@angular/core';
import { provideAvoraMetaForge } from '@avora-labs/meta-forge';

export const appConfig: ApplicationConfig = {
  providers: [
    provideAvoraMetaForge()
  ]
};

💻 Quick Start: Building a Form

Once configured, building a production-ready form with validation takes seconds:

import { FormMeta } from '@avora-labs/meta-forge';

export const loginForm: FormMeta = {
  id: 'login',
  submitLabel: 'Sign In',
  onSubmit: { type: 'api', config: { action: 'auth.login' } },
  fields: [
    { 
      key: 'email', 
      type: 'email', 
      label: 'Email Address', 
      validators: [{ type: 'required' }, { type: 'email' }] 
    },
    { 
      key: 'password', 
      type: 'password', 
      label: 'Password', 
      validators: [{ type: 'required' }] 
    }
  ]
};

Pass this config to the form renderer and you're done!


🤝 Maintainer & Author

AvoraMetaForge is built and maintained by:

Dileesha Ekanayake
📧 [email protected]

Feel free to reach out for support, enterprise inquiries, or just to say hi!


📄 License

This software is UNLICENSED and proprietary. While anyone is free to download and use the compiled bundle from NPM for building applications, the source code remains private and may not be copied, modified, or redistributed.