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

quikfrontend

v1.0.3

Published

A CLI tool for generating React-Vite frontend projects with pre-configured setups

Readme

quikfrontend CLI 🚀

quikfrontend is a powerful and intuitive CLI tool that simplifies the process of setting up modern frontend projects. With a single command, generate a fully configured React project using Vite, pre-loaded with Tailwind CSS, React Router, Redux Toolkit, and more. Say goodbye to repetitive boilerplate setup and hello to rapid development! 🎉


✨ Features

  • Instant Project Setup: Create a production-ready React project with Vite in seconds.
  • Pre-Configured Stack:
    • Tailwind CSS for styling.
    • React Router for navigation.
    • Redux Toolkit for state management.
    • Axios for API calls.
    • Lucide React for icons.
    • Google OAuth for authentication.
  • Modern Folder Structure: Organized components, services, and utilities.
  • Customizable: Easily extend or modify the generated project to fit your needs.
  • Developer-Friendly: Modular codebase with clear documentation.

🛠️ Installation

Get started with quikfrontend in just a few steps:

  1. Install globally via npm:

    npm install -g quikfrontend
  2. Run the CLI:

    quikfrontend

Alternatively, use npx to run without installing globally:

npx quikfrontend

🚀 Usage

Run the quikfrontend command and follow the interactive prompts to configure your project:

quikfrontend

Example Prompts

? Select a framework: React
? Select a language: JavaScript
? Enter project name: my-awesome-app

This will:

  • Create a new Vite-based React project named my-awesome-app.
  • Set up a Frontend folder with a pre-configured structure.
  • Install dependencies like Tailwind CSS, React Router, and Redux Toolkit.
  • Generate essential files (e.g., RoutesConfig.jsx, DashboardSlice.js).
  • Start the development server automatically.

Generated Project Structure

Frontend/
├── src/
│   ├── app/
│   │   ├── DashboardSlice.js
│   │   └── store.js
│   ├── components/
│   │   ├── common/
│   │   ├── protected/
│   │   ├── utils/
│   │   └── data/
│   ├── services/
│   │   ├── repository/
│   │   ├── Apis.js
│   │   └── Connector.js
│   ├── index.css
│   ├── App.jsx
│   ├── main.jsx
│   └── RoutesConfig.jsx
├── .env
├── vite.config.js
└── package.json

📋 Prerequisites

  • Node.js: Version 16.x or higher.
  • npm: Version 8.x or higher.
  • A valid Google Client ID for OAuth integration (add to .env).

⚙️ Configuration

The generated project includes a .env file for environment variables. Update it with your API base URL and Google Client ID:

VITE_API_BASE_URL=http://localhost:3000
VITE_PUBLIC_GOOGLE_CLIENT=your-google-client-id

Note: Keep the .env file secure and never commit it to version control.


🧑‍💻 Contributing

We welcome contributions to make quikfrontend even better! Here's how to get started:

  1. Fork the repository.

  2. Clone your fork:

    git clone https://github.com/your-username/quikfrontend.git
  3. Install dependencies:

    cd quikfrontend
    npm install
  4. Create a new branch:

    git checkout -b feature/your-feature
  5. Make your changes and commit:

    git commit -m "Add your feature"
  6. Push to your fork:

    git push origin feature/your-feature
  7. Open a Pull Request on GitHub.

Please read our Contributing Guidelines for more details.


🐛 Reporting Issues

Found a bug? Have a feature request? Open an issue on our GitHub Issues page.


📜 License

This project is licensed under the MIT License.


🌟 Acknowledgements

  • Built with ❤️ by Your Name.
  • Inspired by modern frontend development workflows.
  • Thanks to the open-source community for tools like Vite, React, and Tailwind CSS.

📬 Contact

Have questions or feedback? Reach out to us:


Start building your next frontend project with ease! 🚀