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

runter

v0.0.1

Published

test

Downloads

3

Readme

runter

A concise way of making applications using a Flutter Like approach. When you think about it, Flutter comes with a component library, a default language (dart) and an Engine (Skia). This library is an attempt to bring the component library and the framework to React Native.

Why?

Still tring to figure that out. But I think it's because I love Flutter and I love React Native and I would want the best of both worlds.

⚠️ Experimental WIP ⚠️

Installation

npm install runter

or

yarn add runter

Usage

To get started, import the Root component from the runter package. This component is the root of your application and should be rendered at the top of your component tree. It is the equivalent of runApp in Flutter.

Root takes a component child MaterialApp which is the main component of the library. It is the equivalent of MaterialApp in Flutter.

MaterialApp takes a home prop which is the main component of your application.

MaterialApp also takes a theme prop which is an object that contains the theme of your application.

The theme object takes a colorScheme prop which is an object that contains the colors of your application.

The theme object also takes a title prop which is the title of your application.

// in App.js
import React from 'react';
import { Root, MaterialApp } from 'runter'; // <-- This is the library

export default function App() {
  return (
    <Root>
      <MaterialApp
        home={<div>Home</div>}
        theme={{
          colorScheme: {
            primary: '#2196F3',
            background: '#fff',
          },
          title: 'Runter Example',
        }}
        title="Runter Example"
      />
    </Root>
  );
}

// ...

Components

I am working to bring all the components from Flutter to React Native. Starting with the basic ones. Here is a list of the components that are in the frontline of development.

  • [] Scaffold
  • [] AppBar
  • [] Text
  • [] Container
  • [] Row
  • [] Column
  • [] Center
  • [] Stack
  • [] Positioned
  • [] Image
  • [] Icon
  • [] IconButton
  • [] FloatingActionButton

Roadmap

The current focus is building the basic 2 components (Root and MaterialApp) and making sure they work as expected. After that, I will be working on the components listed above.

The next thing will probably be routing and navigation. I am still trying to figure out how to do that.

I will also be working on the documentation and the examples.

Contributing

This idea is insane and still in its infancy and is no where ready for production. If you would like to contribute, please do so. See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with ❤️ by Daniel Dennis