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

@appydave/appystack-config

v1.0.3

Published

Shared ESLint, TypeScript, Vitest, and Prettier configs for AppyStack (RVETS stack)

Readme

@appydave/appystack-config

Shared ESLint, TypeScript, Vitest, and Prettier configurations for the AppyStack RVETS stack (React, Vite, Express, TypeScript, Socket.io).

Installation

npm install --save-dev @appydave/appystack-config

Usage

ESLint

For Node/server projects:

// eslint.config.js
import appyConfig from '@appydave/appystack-config/eslint/base';

export default [
  ...appyConfig,
  // Add your custom rules here
];

For React projects:

// eslint.config.js
import appyConfig from '@appydave/appystack-config/eslint/react';

export default [
  ...appyConfig,
  // Add your custom rules here
];

Vitest

For server/Node projects:

// vitest.config.ts
import { mergeConfig, defineConfig } from 'vitest/config';
import appyConfig from '@appydave/appystack-config/vitest/server';

export default mergeConfig(
  appyConfig,
  defineConfig({
    // Your custom config here
  })
);

For client/React projects (jsdom environment):

// vitest.config.ts
import { mergeConfig, defineConfig } from 'vitest/config';
import appyConfig from '@appydave/appystack-config/vitest/client';

export default mergeConfig(
  appyConfig,
  defineConfig({
    // Your custom config here
  })
);

TypeScript

For React projects:

{
  "extends": "@appydave/appystack-config/typescript/react",
  "compilerOptions": {
    // Your overrides here
  },
  "include": ["src"]
}

For Node/server projects:

{
  "extends": "@appydave/appystack-config/typescript/node",
  "compilerOptions": {
    // Your overrides here
  }
}

Base config (for custom setups):

{
  "extends": "@appydave/appystack-config/typescript/base",
  "compilerOptions": {
    // Your custom config here
  }
}

Prettier

Option 1: Reference in package.json

{
  "prettier": "@appydave/appystack-config/prettier"
}

Option 2: Reference in .prettierrc

"@appydave/appystack-config/prettier"

Option 3: Copy the .prettierignore

cp node_modules/@appydave/appystack-config/prettier/.prettierignore .prettierignore

Philosophy

Why Share Configurations?

  1. Consistency: All AppyStack apps follow the same standards
  2. Maintainability: Update configs once, benefit everywhere
  3. Onboarding: New developers know the stack instantly
  4. Best Practices: Battle-tested configs from real projects
  5. Time Savings: No bikeshedding over formatting rules

Technology Choices

  • React: Industry-standard UI framework with massive ecosystem
  • Vite: Lightning-fast dev server and build tool
  • Express: Battle-tested Node.js server framework
  • TypeScript: Type safety across the entire stack
  • Socket.io: Real-time bidirectional communication
  • Vitest: Fast, modern test runner with great DX
  • ESLint 9: Flat config for code quality and consistency
  • Prettier: Automated code formatting

Apps Using AppyStack

  • FliHub: Video asset management hub
  • FliDeck: Video production dashboard
  • Storyline App: Video content planning and review
  • Agent Workflow Builder: Multi-agent orchestration (planned)

License

MIT