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

ivy242-starter

v0.0.5

Published

``` npx ivy242-starter ```

Downloads

77

Readme

Quickstart

npx ivy242-starter
  1. Run npx ivy242-starter. (Optionally, you can pass a target install directory as the first argument (ex: npx ivy242-starter my-app.)
  2. You will be prompted for app name and SMTP credentials. The setup script will use this information to configure your project and instantiate your local database.
  3. Once setup is completed, run npm run dev to start building your application!

Commands

npx ivy242-starter

This is the fastest way to get a new ivy242 starter app rolling! Optionally, pass a target directory as the first argument (ex: my-app). The script will download the latest release of the ivy242-starter and unzip it into the directory you indicated (current working directory by default), then it initiate the seutp process.

npm run setup

Called automatically as part of the npx command. Prompts you for some input & gets your local setup all good to go. Installs dependencies, setups up package.json with your app name, downloads the correct version of PocketBase, instantiates your local database and sets SMTP and starting superuser credentials.

npm run dev

Starts watching for changes to client and rebuilds on save. Then boots up a local Pocketbase instance at https://127.0.0.1:8090, which restarts with any change to server or client code.

Note: There is no hot module replacement (HMR), so changes take effect on page refresh.

npm run preview

Builds your client and server code, then starts Pocketbase on a URL visible to the local network. Helpful for local-only projects, testing on mobile, or checking multiuser scenarios.

Note: For macs that can't add things to firewalls try: /usr/libexec/ApplicationFirewall/socketfilterfw --add <path-to-pocketbase-executable>

npm run deploy

Builds your client and server code, then prompts you for PocketHost login inforomation and instance name. The script will deploy your build to PocketHost (via FTP) directly from your local installation.

Note: Only the contents of dist will be deployed. No data from your local database is deployed! Only the server code (hooks, migrations) and built versions of your client code.

Deploying on PocketHost

Do get started, create a new instance on PocketHost and note the instance name you set it up with.

You can deploy from your local codebase with npm run deploy. This will prompt you for your PocketHost login info, and the instance name where you'd like to deploy. Once all the information has been provided, it will automatically build and deploy your codebase to PocketHost.

This repository also includes a Github Action which will attempt to deploy to PocketHost on each push to main.

In order to deploy on push (via the Github Action), a handful of secrets must be set on the repository itself: FTP_SERVER, FTP_USERNAME, FTP_PASSWORD, and FTP_SERVER_DIR.

FTP_SERVER should be: ftp.pockethost.io. FTP_USERNAME should be your PocketHost login (email address). FTP_PASSWORD should be your PocketHost password. FTP_SERVER_DIR should be your PocketHost instance name.