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 🙏

© 2024 – Pkg Stats / Ryan Hefner

fractal-framework

v0.0.6

Published

A minimalist and powerful framework for building applications and interactive content

Downloads

2

Readme

codecov Build Status

Build your ideas as simple as possible. Fractal is an intuitive framework for building applications and interactive content.

Why?

  • It is minimal, core logic are less than 400 lines of code and you can see how it works
  • Easy integrable and emmbedable by design
  • A clear and flexible architecture that scales
  • Its clear and concise, all you application code are pure functions. Your app code has NO side effects
  • Gives you powerful patterns and composing tools that helps to build small and large apps
  • Your code are flexible, composable and reausable. Modularization as a foundation
  • The state is isolated, this mean is serializable and you can hot-swap code updating the UI without reload the navigator
  • You can serialize the whole side effects, this means you can run fractal in a webworker, in a server via websockets or even in a remote browser via WebRTC :')
  • High code quality, we love that!! and help you to achive it in your proyect <3
  • Lazy loading of components

See the design document. In order to be scalable, Fractal is implemented using Typescript

Getting started

The recomended way is using webpack, please download the Fractal-quickstart repo (Comming soon...).

Or in nodejs, browserify, webpack like environments:

npm i --save fractal-framework

Run the examples

There are many useful examples at examples folder. Be sure that you have installed Node.js, please download Fractal source and extract them.

The examples you can run are:

  • simple
  • compose
  • mori: Fractal using mori.js for persistent data structures (PDS)
  • worker
  • testForm

Open a command window into Fractal folder and run:

npm i
npm run dev ./examples/NAME_OF_EXAMPLE

for example:

npm run dev ./examples/compose

Run tests

Our rule is to have 100% of coverage, right now all core features are covered

// once
npm test
// dev server
npm run test:watch

Design

Curious about how it works? see Design Documentation before reading source code :)

Development

See our Development Documentation