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

orchids

v1.0.3

Published

Make Web App be felt as Native App.

Downloads

7

Readme

orchids

中文文档

Current version is 1.x, v0.x is here.

Make Web App be felt as Native App.

Demo.

Demo Code.

Getting started

npm install orchids --save

import { registerPage, startPage, ... } from 'orchids';

api

registerPage: Register a Page

registerPage(name, attributes, options);
  • name: string Page name.
  • attributes: {} Page attributes.
    • beforeCreate: Before page root element being created.
    • created: After page root element being created.
    • beforeDestroy: Before page root element being destroyed.
    • destroyed: After page root element being destroyed.
  • options: {} Page options.
    • options.route: bool default: true Whether to push a new hash to browser.
    • options.animate: bool default: true Whether to use animation.
    • options.direction: string default: r2l Animation direction: r2l(right to left), l2r(left to right), b2t(bottom to top), t2b(top to bottom).
    • options.backgroundColor: string default: #ffffff Background color.
    • options.style: {} Extra Css style.

startPage: Start a Page

startPage(name, data, options);
  • name: string Page name.
  • data: * Page data pass to created hook.

back: Back a Page

back();

init: Init application

init({ root });
  • root: DOM default: document.body Root container.

getPage: Get Page by index

const page = getPage(index);
  • index: int default: 0 Index(If index is negative integer, the sequence to get value is opposite direction. For example, -1 is to get the last one, and -2 is to get the second last one.).

getRoutePage: Get Page which have route by index

const page = getRoutePage(index);
  • index: int default: 0 Index(If index is negative integer, the sequence to get value is opposite direction. For example, -1 is to get the last one, and -2 is to get the second last one.).

getPagesLength: Get pages' length

const length = getPagesLength();

getRoutePagesLength: Get route pages' length

const length = getRoutePagesLength();

getCurrentPage: Get current Page

const page = getCurrentPage();

getCurrentRoutePage: Get current route Page

const page = getCurrentRoutePage();

getPages: Get pages by name

const pages = getPages(name);
  • name: string Page name. If empty, all pages will return;

getRoutePages: Get route pages by name

const pages = getRoutePages(name);
  • name: string Page name. If empty, all route pages will return;

Page: Page instance and hooks

  • Page.id: Page id.
  • Page.name: Page name.
  • Page.options: Page options.
  • Page.el: Page root element(beforeCreate cant access to it).

beforeCreate: Before page root element being created

registerPage('name', {
  beforeCreate() {
    this.id // ok
    this.name // ok
    this.options // ok
    this.el // not ok
  },
});

created: After page root element being created

registerPage('name', {
  created() {
    this.id // ok
    this.name // ok
    this.options // ok
    this.el // ok
  },
});

afterAnimate: After page's animation finished

registerPage('name', {
  afterAnimate() {
    this // ok
  },
});

beforeDestroy: Before page root element being destroyed

registerPage('name', {
  beforeDestroy() {
    this // ok
  },
});

destroyed: After page root element being destroyed

registerPage('name', {
  destroyed() {
    this // ok
  },
});

beforeHide: When start another page.

registerPage('name', {
  beforeHide() {
    this // ok
  },
});

afterShow: When back from another page.

registerPage('name', {
  afterShow() {
    this // ok
  },
});