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

react-to

v0.1.0

Published

More than router of React

Downloads

40

Readme

React-Flex-Router

A routing library of React, but more than router.
React-Router is a great product, we learned a lot from it. But we truely faced many problems that React-Router doesn't resolve in real using, especially in mobile APPs.
We did a lot to let React-Flex-Router fit mobile APPs, such as Pages Cache, Scroll Memory.
We create a lot of flexible ways, so you can config the router more simplely.
And more...

Features

  • Extensible route

    You can add route components anywhere,anytime.

    const App = ()=> {
      return (
        <HashRouter>
          <div>
            <Route lock component={ Home } path="/"/>
            <Route component={ Products } path="/products"/>
          </div>
        </HashRouter>
      )
    }
    
    const Products = ()=> {
      return (
        <div>
          <Route component={ ScienceProducts } path="/sci" />
          <Route component={ DailiUseProducts } path="/dai" />
        </div>
      )
    }
    
    ReactDOM.render(<App/>, document.getElementById('root'))
  • Pages Cache

    1. Use lock tag to lock a page.
    2. Use page hook to hold a will-unmount's page when open a new page.
  • Memory of scroll position

    Remember the scroll positions of every page, for scrolling to same position when back to a page.

  • Supports loading components dynamicly

    Load a component dynamicly when it's route matches.

  • Supports enter(and leave) filters

    • Enter filters, filters run before a route mount succeed, such as : login's check.
    • Leave filters, filters run before a route unmount succeed, such as : unsubmited form data.
  • Pretty flexible

    • index tag : Index page of a module.
    • miss tag : When miss match.
    • lock tag : Lock a page for preventing to unmount after it mounted.
    • muiltiple tag : For muiltiple matching's need.
    <HashRouter>
      <div>
    
        <Route lock component={ Home } path="/"/>
    
        <Route component={ Products } path="/products" enterFilter={ loginFilter }>
          <Route index component={Enterprise} path="/ep"/>
          <Route miss component={ NotFound }/>
          <Route component={ Detail } path="/item/:id" time={new Date().toLocaleString()}/>
        </Route>
    
        <Route muiltiple component={ Home }  path="/products">
          <Route index component={ ProductNav }/>
        </Route>
    
      </div>
    </HashRouter>
  • Supports rendering in server side

Install

npm install react-flex-router --save-dev

Usage

App.js

import React, { Component } from 'react'
import ReactDOM from 'react-dom'
import { HashRouter, Route } from 'react-flex-router'
import User from './User'
// other import

class App extends Component {
  render(){
    return (
      <HashRouter>
        <div>

          <Route lock component={ Home } path="/"/>

          <Route component={ Products } path="/products" enterFilter={ loginFilter }>
            <Route index component={Enterprise} path="/ep"/>
            <Route miss component={ NotFound }/>
            <Route component={ Detail } path="/item/:id" time={new Date().toLocaleString()}/>
          </Route>

          <Route muiltiple component={ User }  path="/user"/>

        </div>
      </HashRouter>
    )
  }
}

ReactDOM.render(<App/>, document.getElementById('root'))  

User.js

import React, { Component } from 'react'
import { Link, Route } from 'react-flex-router'
// other import

export default class User extends Component {
  render(){
    return (
      <div>
        <ul>
          <Link to='/info'>Info</Link>
          <Link to='/edit'>Edit</Link>
        </ul>

        <div>
          <Route index component={ UserInfo } path='/info'/>
          <Route component={ UserInfoEdit } path='/edit'/>
        </div>
      </div>
    )
  }
}