A full-stack web application for building websites visually.
π Live Demo: web-builder-1.onrender.com
web-builder/
βββ client/ # Frontend application (React)
β βββ src/
β βββ App.jsx
βββ server/ # Backend application (Node.js)
βββ controllers/
βββ paymentController
βββ billingController
| Language | Usage |
|---|---|
| JavaScript | 95.0% |
| CSS | 4.5% |
| HTML | 0.5% |
git clone https://github.com/ayushpatwal011/web-builder.git
cd web-buildercd server
npm install
npm run devcd ../client
npm install
npm run devOpen client/source/app.js and update the SERVER_URL:
// Comment this line (production URL)
// export const SERVER_URL = 'https://web-builder-xlqe.onrender.com'
// Uncomment this line (local development)
export const SERVER_URL = 'http://localhost:8000'
β οΈ Remember to revert this change before deploying to production.
Ayush Patwal β @ayushpatwal011