Skip to content

Latest commit

Β 

History

History
59 lines (43 loc) Β· 1.3 KB

File metadata and controls

59 lines (43 loc) Β· 1.3 KB

Renz

An interactive full-stack playground that lets you build a React frontend and Node.js backend and preview the output instantly in the browser

With Renz, you can iterate on frontend and backend code together and see live results without switching tools or setting up local environments.


πŸ“Έ Preview

Homepage Placeholder Live Preview Placeholder


πŸš€ Features

This project enables:

  • ⚑ Live full-stack preview β€” build React frontend and Node.js backend and see results instantly
  • 🧩 Frontend + Backend side-by-side development
  • πŸ–₯ In-browser code execution & rendering
  • πŸ” Rapid iteration workflow
  • πŸ“± Responsive UI designed for development workflows
  • πŸ“ TypeScript-first codebase

πŸ›  Tech Stack

  • Frontend: Next.js (React)
  • Backend: Node.js / Express
  • Language: TypeScript
  • Deployment: Vercel
  • Preview Engine: In-browser rendering & API execution

πŸ’» Getting Started

  • Installation
git clone https://github.com/MonishPuttu/Renz.git
cd Renz

Run Frontend

cd Frontend
npm install
npm run dev

Open http://localhost:3000

Run Backend

cd Backend
npm install
npm start