A professional website built with Node.js, Express, and Pug template engine.
# Install dependencies
npm install
# Start development server
npm run dev
# Start production server
npm startVisit: http://localhost:3000
├── app.js # Express server & routes
├── package.json # Dependencies
├── public/ # Static assets (CSS, JS, images)
│ ├── css/
│ ├── js/
│ ├── images/
│ ├── fonts/
│ └── cdn-cgi/
└── views/ # Pug templates
├── layout.pug # Main layout
├── partials/ # Reusable components
│ ├── header.pug
│ └── footer.pug
└── *.pug # Page templates
/- Homepage/about-us- About page/contact- Contact page/blog- Blog listing/software- Software development/websitedevelopment- Website development/customapp- Custom app development/frontend- Frontend development/webporttal- Web portal development/qa- QA & testing/itstaff- IT staff augmentation/digitaltransformation- Digital transformation/vas- Virtual assistant services/pds- Packaging design services/uiuxdesign- UI/UX design/privacy-policy- Privacy policy/term-conditions- Terms & conditions
- QUICK_START.md - Get started immediately
- CONVERSION_GUIDE.md - Detailed HTML to Pug conversion guide
- convert-helper.js - Helper script for conversions
- Node.js - Runtime environment
- Express - Web framework
- Pug - Template engine
- Bootstrap - CSS framework
- jQuery - JavaScript library
{
"express": "^4.18.2",
"pug": "^3.0.2",
"nodemon": "^3.0.1"
}The server runs on port 3000 by default. To change:
// In app.js
const PORT = process.env.PORT || 3000;All rights reserved © 2026 MaMo Technologies