cli-react-go-mongo-fiber-v1

A custom CLI tool to set up a full-stack project with React, Go, MongoDB, and Fiber.


Keywords
cli, node, project setup, react, go, mongo, fiber
License
MIT
Install
npm install cli-react-go-mongo-fiber-v1@1.0.2

Documentation

CLI React, Go, MongoDB, TailwindCss, Fiber Project Setup

This project setup script allows you to quickly create a full-stack application with React (frontend),TailwindCss(style), Go (backend), MongoDB (database), and Fiber (Go web framework). It initializes the project folder structure, sets up the backend with Go and MongoDB, and creates the frontend with React, Vite, and Tailwind CSS.

Prerequisites

Make sure you have the following installed on your system:

Installation

To use the setup script, run the following command:

npm install -g cli-react-go-mongo-fiber

Run the CLI to create a new project:

create-my-project

Project Structure After running the CLI, the following project structure will be created:

<your-project-name>/
├── backend/
│   ├── config/
│   ├── controllers/
│   ├── models/
│   ├── routes/
│   └── main.go
├── frontend/
   ├── public/
   └── src/
       ├── App.jsx
       ├── index.css
       ├── main.jsx
       └── tailwind.config.js