
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@rafeekpro/stackwizard
Advanced tools
π§ββοΈ Magical full-stack project generator with FastAPI, React, PostgreSQL, and Docker
Create production-ready full-stack applications in seconds!
StackWizard is a powerful CLI tool that generates complete, production-ready full-stack applications with a single command. Get a fully configured project with FastAPI backend, React frontend, PostgreSQL database, and Docker Compose orchestration - all following industry best practices.
Clone and run directly:
# Clone the repository
git clone https://github.com/rafeekpro/stackwizard.git
cd stackwizard
npm install
# Run the generator
npm start
# or
node src/index.js
Install from NPM registry:
# Global installation
npm install -g @rafeekpro/stackwizard
# Or use npx directly
npx @rafeekpro/stackwizard my-awesome-app
Install from GitHub Packages registry:
# Configure npm to use GitHub registry for @rafeekpro scope
npm config set @rafeekpro:registry https://npm.pkg.github.com
# Install globally
npm install -g @rafeekpro/stackwizard
Note: Both NPM and GitHub Packages are now live with version 1.0.0!
Simply run the command and follow the interactive prompts:
# From cloned repository
npm start
# Or after global installation
stackwizard
# Or use npx directly (no installation needed!)
npx @rafeekpro/stackwizard
You'll be asked to configure:
Skip the prompts with command-line options:
node src/index.js --name my-app --ui mui --skip-git
Options:
-V, --version Output version number
-n, --name <name> Project name
-u, --ui <ui> UI library (mui or tailwind)
-s, --skip-git Skip git initialization
-i, --install Install dependencies after creation
-q, --quick Quick mode - use all defaults
-h, --help Display help
Generate a project with all defaults in seconds:
node src/index.js --quick --name my-app
your-project/
βββ backend/ # FastAPI backend application
β βββ app/
β β βββ api/ # API endpoints
β β βββ core/ # Core configuration & security
β β βββ crud/ # Database operations
β β βββ models/ # SQLAlchemy models
β β βββ schemas/ # Pydantic schemas
β β βββ main.py # Application entry point
β βββ alembic/ # Database migrations
β βββ tests/ # Backend tests
β βββ Dockerfile # Production-ready Dockerfile
βββ frontend/ # React frontend application
β βββ src/
β β βββ components/ # Reusable UI components
β β βββ pages/ # Page components
β β βββ services/ # API service layer
β β βββ App.js # Main application component
β βββ public/ # Static assets
β βββ Dockerfile # Production-ready Dockerfile
βββ database/ # Database initialization
βββ docker-compose.yml # Docker orchestration
βββ .env # Environment configuration
βββ README.md # Project documentation
After generation, start your full-stack application with:
cd your-project
docker-compose up -d
Your application will be available at:
Backend Development:
cd backend
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reload
Frontend Development:
cd frontend
npm install
npm start
# Create a new migration
alembic revision --autogenerate -m "Description"
# Apply migrations
alembic upgrade head
Watch your tests run in real-time:
# Install Cypress
make cypress-install
# Test MUI template visually
make cypress-mui
# Test Tailwind template visually
make cypress-tailwind
Ensure everything works before pushing to GitHub:
# Full validation (recommended)
npm run validate:full
# Quick validation
npm run validate:quick
# Install git hooks for automatic validation
npm run install-hooks
Run comprehensive tests with a single command:
# Using Makefile
make test-all # Run all tests
make pre-commit # Pre-commit checks
make docker-build-test # Test Docker builds
# Using orchestrator
npm run test:orchestrate # Smart mode
npm run test:orchestrate:full # Full test suite
Contributions are welcome! Feel free to:
MIT Β© RafaΕ Εagowski
RafaΕ Εagowski - Full-Stack Developer
This project leverages modern, production-ready technologies:
Created with β€οΈ by RafaΕ Εagowski
Full-Stack Developer | Open Source Contributor
NPM β’
GitHub β’
Profile
FAQs
π§ββοΈ Magical full-stack project generator with FastAPI, React, PostgreSQL, and Docker
The npm package @rafeekpro/stackwizard receives a total of 6 weekly downloads. As such, @rafeekpro/stackwizard popularity was classified as not popular.
We found that @rafeekpro/stackwizard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.