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

ramtastic

v0.2.0

Published

Ramda + Snabbdom = Fantastic!

Downloads

43

Readme

Ramtastic

Ramda + Snabbdom = Fantastic

Point-free programming for frontend-applications. Based on Ramda and Snabbdom.

Inspired by Redux and functional React components, but with an edge towards lenses.

See Ramtasks,

the practical test project. Though the project is quite new, it got functional and usable really quick due to Snabbdom and Ramda.

Contribute

There's no intention to become the next React. It's just that Ramda is worth learning. And how to learn better than writing your own frontend-framework 😉

I'm myself new to the "Zen of Ramda", so feel free to complain or suggest: Twitter handle: yaqmol

Key points:

Components

  • Components are pure functions that render VNodes
  • Containers bind components to values of the state tree via paths

Single Immutable State Tree

  • There is a central immutable state tree
  • Actions express mutations on the state tree
  • Reducers are replaced by a lens-like value set and get mechanism

State changes trigger rendering

  • State-change-events on paths can be subscribed to
  • Re-rendering is triggered automatically on state changes

Unordered ideas:

  • CLI "ram", something in the line of react-scripts
  • CLI options:
    • add dependencies and scripts to existing project
    • create components
    • create containers (with selection from a list of existing components)
    • create actions (ramtastic doesn't need reducers)
    • translate HTML to snabbdom
  • Usage documentation

RamdaJS

A practical functional library for JavaScript programmers.

Ramda Documentation

Snabbdom

A virtual DOM library with focus on simplicity, modularity, powerful features and performance.

Snabbdom on GitHub