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

weex-plugin-weex-router

v0.1.3

Published

适用于weex的声明式路由组件。

Readme

weex-router

适用于weex的声明式路由组件。

特点:

  • 声明式
  • 基于组件的可组合性
<template>
  <div>
      <router>
          <div class="nav">
            <router-link to="/home">home</router->
            <router-link to="/about">about</router->
          </div>
          <match pattern="/home"><home></home></match>
          <match pattern="/about"><about></about></match>
      </router>
  </div>
</templater>

<script>
require('weex-router')
</script>

Getting Started

weexpack 安装

$ weexpack plugin add weex-router

组件

核心组件

  • router
  • link
  • match
  • miss

Router

Router负责监听地址的变化,执行跳转运画,渲染页面

<router basename="/app" >
  <div class="app"><div>
</router>
  • basename: string 所有路由的基础地址

router-link

类似一个a标签,使用link声明跳转地址和跳转方式

<router-link to="/about" activeClassName="active">
  About
</router-link>
  • to: string

跳转的路径

<router-link to="/courses" >课程</router-link>
  • action: 选择路由的类型, push | pop | tab, 默认为push
<router-link to="/courses" action="push">课程</router-link>
  • animated: boolean 是否使用动画效果
<router-link to="/courses" animated="ture">课程</router-link>

router-match

match根据路由地址负责渲染或者不渲染它所拥有的组件, Match是可以嵌套的

  • pattern: string

匹配的路由,支持正则表达式,支持path-to-regexp

<router-match pattern="/users/:id" ><user></user></router-match>

router-miss

如果所有的Match组件都没有配置到地址,那么Miss组件会被渲染

<router>
   <rouer-match pattern="/foo"/><foo></foo></rouer-match>
   <rouer-match pattern="/bar"><bar></bar></rouer-match>
   <router-miss><nomatch></nomatch></router-miss>
</router>

JS API

  • push(url, options)
var Router = require("weex-router")
Router.push('/about',{
  animated:true,
  params:{
    user:"123"
  }
})
  • pop(options)
var Router = require("weex-router")
Router.pop()
  • params
//获取相前渲染的参数
var Router = require("weex-router")
console.log(Router.params)