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

walts

v0.11.1

Published

One-way pub/sub architecture for Angular ver.2.0.0+

Readme

Walts

Walts is a library for Angular (>= 2.0.0) to provide the Observer pattern using RxJS.

Motivation

Angular is a full stack, but guidance on the state holding is left to the user.

Walts inspired from flux architecture and redux, it provide the order to your Angular application.

Why Walts?

In Angular, you can build the application by store values to services and bind to on the screen to reference a service from the component without using the Observer pattern. so‐called MVC. If you prefer a reactive architecture, you can be handled all of the state transition transparently by subscribe the change of service in the component using RxJS. These are thing certainly can be achieved without the use of Walts.

In Waltz, it hides the Observer pattern. It benefits can practice this pattern by aggregate methods in Action and combine Dispatcher and Store if you are not skilled of RxJS. When you are developing an application in one person, do as you wish. however, when you promote a team development Walts will exert a force as an auxiliary library.

Walts has followed the concept of CQRS as an its design pattern. They are guidelines, writing process to Actions and reading process to Store. By this guidelines, it is possible to point out the description place as an objective guideline rather than the subjectivity of the developer In the code review at the time of team development. Walts is not only to provide the Observer pattern, It's result in the objective order to the layers except the View of Angular application.

Installation

npm install walts

Examples

License

MIT