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

@elata-biosciences/create-elata-demo

v0.12.1

Published

Scaffold Elata starter apps from multiple templates

Readme

@elata-biosciences/create-elata-demo

Scaffold Elata starter apps from published templates.

What This Package Is

This package provides the create-elata-demo CLI and these user-facing app starters:

  • rppg-demo
  • eeg-demo
  • eeg-ble

Short aliases and compatibility names are also supported:

  • rppg
  • eeg
  • ble
  • eeg-web-ble-demo

eeg-ble is a separate BLE-first starter with browser pairing flow and native reference callouts for the iOS and Android demo surfaces.

Use it when you want a clean scaffolded app or a consumer-facing reference project.

When To Use It

Use @elata-biosciences/create-elata-demo when you want:

  • the fastest path to a running Elata app
  • a reference app that matches the published package surface
  • a cleaner starting point than cloning or modifying the monorepo demos

Install

This package is usually invoked without installing it permanently:

npm create @elata-biosciences/elata-demo my-app
pnpm dlx @elata-biosciences/create-elata-demo my-app
npx @elata-biosciences/create-elata-demo my-app

Requirements

  • Node.js >= 18

Usage

List templates:

pnpm dlx @elata-biosciences/create-elata-demo -- --list-templates
npx @elata-biosciences/create-elata-demo -- --list-templates

Scaffold a project:

npm create @elata-biosciences/elata-demo my-app
npm create @elata-biosciences/elata-demo my-app -- --template rppg
npm create @elata-biosciences/elata-demo my-app -- --template eeg-demo
npm create @elata-biosciences/elata-demo my-app -- --template eeg
npm create @elata-biosciences/elata-demo my-app -- --template eeg-ble
npm create @elata-biosciences/elata-demo my-app -- --template ble

When you run the CLI interactively without --template, it first asks which app type you want to create, then asks for the project name. In non-interactive runs, it still falls back to the default rppg-demo template.

If you omit the project directory, the CLI prompts for the project name.

Build And Dev Notes

The package is tested from the repo with:

./run.sh doctor
pnpm --dir packages/create-elata-demo test
./run.sh test create-elata-demo

The third command also ensures workspace dependencies exist, then smoke-tests each template by scaffolding, installing dependencies, and running a build.

Workspace Caveat

If you scaffold a new app inside another pnpm workspace and that app is not added to the workspace globs, run this from the parent directory:

pnpm:
pnpm --dir my-app --ignore-workspace install
pnpm --dir my-app --ignore-workspace run dev

npm:
cd my-app
npm install
npm run dev

Troubleshooting

  • If scaffolding fails because the directory already exists, choose a new target folder or remove the existing one first.
  • If pnpm install inside a generated app does not create node_modules, check whether you are inside another pnpm workspace and use --ignore-workspace.
  • If you are deciding between this package and ./run.sh sync-to, use create-elata-demo for new apps and sync-to only for local eeg-web iteration against an existing app.

More Details

For full scaffolding behavior and examples, see docs/create-elata-demo.md.