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

create-larastack-app

v0.4.0

Published

Scaffold a Larastack-based monorepo with selectable frontend, backend, and mobile apps.

Readme

create-larastack-app

Scaffold a Larastack-based monorepo from Liinkiing/larastack with selectable applications:

  • frontend (Next.js)
  • backend (Laravel)
  • mobile (Expo)

The CLI asks for:

  • project folder
  • application name
  • included app folders (checkbox multiselect)
  • GitHub username (auto-detected when possible)
  • author (John Doe <[email protected]>, auto-filled from git config when possible)
  • Expo EAS project ID (optional, when mobile is selected)

It then customizes placeholders like Larastack, larastack, and liinkiing, updates mobile identifiers, removes unselected app folders, and can initialize a fresh git repository.

Requirements

  • Node.js >=22
  • Corepack enabled
  • pnpm >=10
corepack enable
corepack use [email protected]

Usage

npx create-larastack-app@latest
pnpm create larastack-app
bun create larastack-app

You can also pass flags for non-interactive runs:

npx create-larastack-app@latest my-app \
  --name "My App" \
  --apps frontend,backend \
  --author "John Doe <[email protected]>" \
  --github-user mygithub

CLI options

  • --name <name>: Application display name
  • --apps <apps>: Comma-separated list of frontend,backend,mobile
  • --github-user <username>: GitHub username for owner/repository placeholders
  • --author <author>: Author for package.json (John Doe <[email protected]>)
  • --eas-project-id <id>: Expo EAS project ID (optional)
  • --template-source <source>: Override template source (github:Liinkiing/larastack by default)
  • --template-ref <ref>: Git reference for the template (master by default)
  • --no-git: Skip git init

Local development

pnpm install
pnpm run lint
pnpm run typecheck
pnpm run format:check
pnpm run test
pnpm run build

Run locally:

node dist/cli.js

Release

Releases are manual and run from GitHub Actions with release-it + Conventional Commits.

  1. Open Actions and run the release workflow.
  2. Choose inputs:
    • bump: auto (recommended), or force patch, minor, major
    • prerelease: none, alpha, beta, rc
    • dry-run: true to preview, false to publish
  3. Run it on master.

The workflow lints, typechecks, format-checks, tests, builds, updates CHANGELOG.md, creates the release commit/tag, publishes to npm, and creates a GitHub release.

Local equivalents:

pnpm run release:dry
pnpm run release

Conventional Commit bump rules:

  • fix: -> patch
  • feat: -> minor
  • BREAKING CHANGE: (or !) -> major

If commits are only non-releasable types (chore:, docs:, test:...), use the workflow bump input to force a release.

For npm auth, prefer npm Trusted Publishing (OIDC) for .github/workflows/release.yml. As a fallback, set NPM_TOKEN in repository secrets.

Because the package name is create-larastack-app, users can run the short create commands:

  • pnpm create larastack-app
  • bun create larastack-app