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

@next-starters/skill-appium-page-objects

v1.0.0

Published

Defines the class structure and locator/wait discipline for Appium/WDIO Page Object classes in 7 invariants: every page object extends the exported NativeBase (base.ts's file-local `Base` name is…

Readme

appium-page-objects

Structure and locator/wait discipline for Appium/WDIO Page Object classes: a shared NativeBase contract, locator construction via the typed testID catalog, verify* assertion methods, one file per screen, and a hard line between page structure and business/domain flow logic.

What it covers

  • A shared NativeBase base class that every page object extends, with locators constructed via the typed testID catalog.
  • verify* assertion methods that assert internally rather than returning a boolean.
  • A deterministic screen-to-class naming rule, one page-object file per screen.

Use it

Read SKILL.md for the invariants and the red flags that call them out. Copy references/WidgetsCreatePage.ts as the template for a new page object (root testID via super(), $(nativeUtils.buildSelector(...)) locator getters typed ChainablePromiseElement, verify* assertions, one action composing a sibling-skill wait), references/widgets-create.spec.ts as the template for the spec that drives it, and references/behavior.test.ts as the executable proof that the catalog → waits → page-object → spec chain composes.

Install globally

skills add [email protected]:catesandrew/next-starters.git --skill skills/appium-page-objects -g

Companion

Pairs with a sibling skill that owns the wait-helper implementations this skill's page objects call into around their interactions, and with another sibling skill that owns the typed testID catalog this skill's page objects pull ids from. This skill only defines the page-object class shape and locator/wait discipline that consumes those two.