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

omega-angular

v0.1.6

Published

Omega architecture primitives for Angular (intents, channel, flows, agents) plus ESLint-first CLI builders and eslint-plugin-omega.

Readme

Omega Angular (omega-angular)

Angular/RxJS library for the Omega architecture: OmegaChannel, intents, flows, agents, provideOmega(). Published on npm as omega-angular.

The tarball also ships ESLint-first CLI builders, the eslint-plugin rules, eslint/config-omega.mjs, and Angular schematics.

Documentation

  • Web: Documentation site (guides and overview).
  • Repository: full monorepo details in the root README.md (install, ng add, ESLint, ecosystem, example app, workflows).

Quick start (consumer project)

Recommended:

npm install omega-angular
ng add omega-angular
  • npm install only adds the dependency; it does not run the schematic.
  • ng add omega-angular wires angular.json (app-build / app-serve + omega-angular:eslintThen*), ESLint, and omega-setup.ts / app.config.ts, unless you pass --skip-eslint-config or --skip-ecosystem.

Ecosystem schematic alone:

ng generate omega-angular:ecosystem
ng generate omega-angular:ecosystem --project=myApp --force

By default this also adds the login + home starter (features/auth, features/home, routes), plus inspector/logger wiring in omega-setup.ts. Use --minimal for the previous “empty flows only” bootstrap.

Revert ng add (builders, ESLint flat config, app.config providers):

ng generate omega-angular:remove
ng generate omega-angular:remove --project=myApp --remove-eslint-dev-dependencies
ng generate omega-angular:remove --delete-omega-setup
npm uninstall omega-angular

This restores build / serve in angular.json from the inner targets (app-build / app-serve), replaces eslint.config.mjs with a minimal config that does not import omega-angular, and strips omegaSetupProviders from app.config.ts. With --delete-omega-setup, it also deletes src/app/omega-setup.ts (after updating app.config.ts). Other Omega feature folders remain; remove them manually if unused.

Feature schematic (flow + agent + page):

ng generate omega-angular:feature my-feature --project=myApp

There is no separate schematic for only a flow or only an agent — the feature generator creates both plus page/API; trim or copy from an existing feature as needed.

Full command tables (ng add, ecosystem, feature, remove): Schematics guide on the documentation site.

Manual builder wiring

See the root README.md for omega-angular:eslintThenBuild / eslintThenServe and delegateProject / delegateTarget.