New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-lb-app

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-lb-app

CLI to create a React + Tailwind + Router project with prebuilt structure

latest
npmnpm
Version
1.0.2
Version published
Weekly downloads
1
-50%
Maintainers
1
Weekly downloads
 
Created
Source

create-lb-app

A CLI tool to quickly generate a React project with Tailwind CSS, React Router DOM, daisyUI, Lucide Icons, React Toastify, and a prebuilt folder structure ready for industry-level web applications.

✨ Features

  • Pre-configured Vite + React project
  • Tailwind CSS + DaisyUI setup ready
  • React Router DOM configured with MainLayout and routes
  • Starter components: Navbar, Footer, Loader
  • Pages: Home, About, Contact, SignIn, SignUp, NotFound
  • Auth context & hook prebuilt
  • Folder structure: components, pages, layouts, routes, context, hooks
  • All necessary dependencies installed: react-router-dom, axios, zod, lucide-react, react-toastify, tailwindcss, daisyui

🚀 Installation

You can install or use the CLI in three ways:

# 1️⃣ Using npx (no global install required)
npx create-lb-app myproject

# 2️⃣ Using npm create (modern style)
npm create-lb-app myproject

# 3️⃣ Using global installation
npm install -g create-lb-app
create-lb-app myproject

💡 Usage Instructions

After running the CLI, it will automatically create a project with:

  • Vite + React setup
  • Tailwind CSS + DaisyUI installed
  • React Router DOM routes configured
  • Starter pages and components (Navbar, Footer, Loader)
  • Auth context and hook ready
  • Organized folder structure for scalable web applications

After creation, go inside the project folder and start the development server:

cd myproject
npm run dev

📂 Folder Structure

src/
├── components/   # Navbar, Footer, Loader
├── pages/        # Home, About, Contact, SignIn, SignUp, NotFound
├── layouts/      # MainLayout
├── routes/       # Route config
├── context/      # AuthContext
├── hooks/        # Custom hooks
└── main.jsx      # Entry file

📌 Notes

  • You can immediately start developing your app after running the CLI.
  • All dependencies (React Router, Tailwind, daisyUI, Lucide Icons, Toastify) are pre-installed in the generated project.
  • Folder structure and starter components are optimized for production-ready projects.
  • Increment the CLI version and publish updates to npm when you make improvements.

Made with ❤️ by Biplob Sordar

Keywords

react

FAQs

Package last updated on 17 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts