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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-ec-react-app

v1.0.9

Published

Scaffolds a new React app with Vite, Kendo, Tailwind, and more.

Readme

create-ec-react-app

A zero-configuration CLI tool for scaffolding modern, enterprise-ready React applications with a specific, opinionated stack.

This tool saves you from the tedious setup of integrating a standard set of technologies, allowing you to jump straight into development. It generates a new project pre-configured with Vite, TypeScript, Kendo UI, Tailwind CSS, TanStack Query, and more.

npm License

What's Included?

This scaffolder sets up a new project with the following technologies, all configured to work together seamlessly:

  • ⚡️ Vite: Next-generation frontend tooling for a blazing-fast development experience.
  • 🔷 TypeScript: Static typing for robust and scalable applications.
  • 🥋 Kendo UI for React: A complete suite of professional, enterprise-grade UI components.
    • Installs @progress/kendo-react-all for access to all components.
    • Prompts for theme selection (Default, Bootstrap, Material, Fluent, Classic).
  • 💨 Tailwind CSS: A utility-first CSS framework for rapid UI development, configured via the official @tailwindcss/vite plugin.
  • 🔄 TanStack Query (React Query): Powerful asynchronous state management for fetching, caching, and updating data. The QueryClientProvider is pre-configured.
  • 🐻 Zustand: A small, fast, and scalable bearbones state-management solution.
  • 📊 XRM Types: Type definitions for Microsoft Dynamics 365 / Power Platform development.
  • Strict Mode: React's Strict Mode is enabled by default for highlighting potential problems.
  • 📖 Git: A new Git repository is initialized in the created project.

Prerequisites

You must have Node.js installed on your system (version 18.x or higher is recommended).

Usage

To create a new app, run the following command in your terminal:

npx create-ec-react-app

The CLI will guide you through an interactive setup process:

  1. Project Name: It will first ask for the name of your project.
  2. Kendo UI Theme: It will then prompt you to select a Kendo UI theme to install and configure.

Alternatively, you can provide the project name as an argument to skip the first prompt:

npx create-ec-react-app my-awesome-project

After Installation

Once the scaffolding process is complete, follow these steps to start your development server:

  1. Navigate into your new project directory:

    cd <your-project-name>
  2. Add your telerik-license.txt to the root directory This will allow you to activate your Kendo License

  3. Activate your Kendo UI License: This is a crucial step to prevent watermarks on the Kendo components.

    npx kendo-ui-license activate
  4. Start the development server:

    npm run dev

Your new application will be running on http://localhost:5173 (or the next available port).

Generated Project Structure

The generated project has a clean and logical structure, with all the necessary configurations in place.

my-awesome-project/
├── public/
│   └── vite.svg
├── src/
│   ├── App.css
│   ├── App.tsx
│   ├── index.css         # Configured with Tailwind imports
│   ├── main.tsx          # Pre-configured with providers for Kendo, React Query, and Strict Mode
│   └── vite-env.d.ts
├── .eslintrc.cjs
├── .gitignore
├── index.html
├── package.json          # All dependencies are listed here
├── tailwind.config.js    # Tailwind configuration file
├── tsconfig.json
└── vite.config.ts        # Configured with the @tailwindcss/vite plugin

Contributing

Contributions are welcome! If you have suggestions for improvements or find a bug, please feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.