GenForge Studio Logo

GenForge Studio

Services
Web DevelopmentStartup Web DevelopmentUI/UX DesignSaaS DevelopmentE-commerceTechnical SEOπŸ“ Lucknow Agency
Case StudiesAbout UsBlogsCareersCost Calculator
Website Audit
Contact

Contact

Home/Projects/Forces Express

Case Study

Forces Express

A unified international cargo & courier portal built with Next.js and MongoDB β€” featuring live shipment tracking, a self-service shipping calculator, and carrier consolidation across DHL, FedEx, Bluedart, and Ekart.

Client
Forces Express Courier (OPC) Pvt Ltd
Industry
Global Logistics & Freight Forwarding
Timeline
18 Days
Location
India (Global Operations)
Year
2026
Type
Full-Stack Platform
Forces Express β€” Homepage with carrier consolidation and tracking search
Business Challenge

Buried under phone calls for basic quotes

Forces Express is an international courier and cargo agent based in India, consolidating shipments through premium carrier networks β€” DHL, FedEx, Bluedart, and Ekart. They handle everything from small parcels to bulk cargo, shipping to 220+ countries.

Their problem was operational: the support desk spent most of its day answering two types of calls β€” "how much to ship this to Germany?" and "where is my package?" Neither question required human intervention, but without a digital self-service layer, every inquiry meant a phone call, a manual rate lookup, and a callback with a quote.

They needed a portal that could handle rate calculations automatically (including the volumetric vs actual weight comparison that confuses most customers), provide real-time tracking without calling the office, and present their multi-carrier capability as a unified brand experience.

Goals

  • Automate shipping rate quotes to eliminate 75% of support desk calls
  • Build live tracking that works across DHL, FedEx, Bluedart, and Ekart
  • Create a secure admin panel for shipment creation and milestone updates
  • Present multi-carrier operations under a single unified brand
  • Launch within 18 days to coincide with a carrier partnership expansion

Constraints

  • Tracking data must standardize across carriers with different milestone formats
  • Calculator must handle both actual and volumetric weight comparisons
  • Admin dashboard security is critical β€” it controls live shipment data
  • Must work globally β€” recipients track packages from 220+ countries
Results

Measurable operational impact

Comparing support volume and operational metrics 90 days after launch.

-75%
Quote Queries
via self-service calculator
0.8s
Tracking LCP
indexed MongoDB lookups
99.8%
Milestone Accuracy
delivery tracking events
18 Days
Build Time
concept to production
Solution

What we built and why

Volumetric Rate Calculator

The calculator compares actual weight against volumetric weight (L x W x H / 5000) β€” whichever is higher determines the shipping rate. Users select destination country, input dimensions, and get an instant rate. This single feature eliminated 75% of support desk calls because the most common question was just 'how much does it cost?'

Unified Tracking Engine

Each shipment has a nested MongoDB document storing standardized milestone events β€” status, location, details, timestamp. Whether the underlying carrier is DHL or Bluedart, the customer-facing tracking page renders identical milestone cards. One tracking number, one consistent experience.

Secure Admin Dashboard

The admin panel is where shipments are created, tracking codes issued, and transit milestones posted. JWT authentication with bcrypt-hashed passwords protects these endpoints. Rate limiting prevents brute-force attempts. The admin can update any shipment's status in real-time, and the tracking page reflects changes immediately.

Carrier Consolidation Layer

Forces Express works with multiple carriers but presents as a single brand. The portal abstracts carrier details β€” customers never see which carrier handles their shipment. Service pages highlight capabilities (air freight, sea cargo, express delivery) without exposing the carrier matrix behind them.

Gallery

Platform screens

Forces Express β€” Shipping services page with DHL, FedEx, Bluedart integration
Forces Express β€” Shipping services page with DHL, FedEx, Bluedart integration
Forces Express β€” B2B cargo solutions with volumetric rate calculator
Forces Express β€” B2B cargo solutions with volumetric rate calculator
Forces Express β€” Premium shipment handling and doorstep pickup scheduling
Forces Express β€” Premium shipment handling and doorstep pickup scheduling
Technology Stack

Why we chose each tool

N

Next.js 16

Server-side rendering for SEO on service pages, API routes for tracking lookups and calculator logic, and static generation for marketing pages β€” all in one framework.

M

MongoDB + Mongoose

Shipment documents need nested arrays for transit milestones (each with status, location, timestamp). Document databases handle this naturally without JOIN-heavy relational queries.

J

JWT + bcryptjs

The admin dashboard creates and updates live shipments. JWT sessions with bcrypt-hashed credentials protect these endpoints without requiring a third-party auth service.

I

Indexed Tracking Queries

MongoDB compound indexes on trackingCode fields reduce lookup response times to sub-0.8s, even as the shipment collection grows.

V

Vercel Edge Network

Global CDN ensures tracking pages load fast for recipients worldwide β€” not just in India where the shipments originate.

Process

18-day delivery sprint

01

Schema & Auth Design

Days 1–4

Designed MongoDB schemas for Shipments (with nested transit history arrays), Users, and Inquiries. Implemented bcrypt credential hashing and JWT session management.

02

Tracking & UI Build

Days 5–9

Built responsive landing pages, tracking search widget with indexed queries, doorstep pickup scheduling, and carrier service pages.

03

Shipping Calculator

Days 10–14

Developed the volumetric rate engine with country-grid pricing, dimension input validation, and instant rate display. Tested against 50+ real shipment scenarios.

04

Admin Portal & Deploy

Days 15–18

Built the secure admin dashboard for shipment creation, milestone posting, and inquiry management. Production deployment with CDN configuration for global tracking access.

Engineering Challenges

Problems we solved

Standardizing Multi-Carrier Tracking

DHL, FedEx, Bluedart, and Ekart each use different status codes, location formats, and milestone naming conventions. Displaying these inconsistently would break the unified brand experience.

Solution: We designed a standardized milestone schema β€” each event stores a normalized status (picked up, in transit, out for delivery, delivered), a human-readable location, details, and timestamp. The admin enters milestones in this format regardless of carrier. The tracking UI renders them identically.

Sub-Second Tracking Lookups at Scale

As shipment volume grows, tracking lookups slow down. A full-collection scan on a tracking code is O(n) β€” unacceptable when customers are anxiously checking their package status.

Solution: Compound MongoDB indexes on trackingCode fields with a unique constraint. Lookups are now O(log n) regardless of collection size. We achieved consistent 0.8s response times including server-side rendering of the tracking page.

"

The shipping calculator alone was worth the entire project. We used to get 30+ calls a day just asking for rates. Now customers get instant quotes online, and our support team focuses on actual shipment issues instead of answering 'how much to ship 5kg to Dubai?'

Forces Express Operations Team
Forces Express Courier, India
FAQ

Questions about this project

Why build a custom logistics portal instead of using off-the-shelf shipping software?+
Forces Express consolidates multiple carriers (DHL, FedEx, Bluedart, Ekart) under a single brand. Off-the-shelf shipping software is designed for single-carrier operations. A custom portal lets them present a unified tracking experience β€” customers search one tracking number and see standardized milestone updates regardless of which carrier actually handles the parcel. The shipping calculator also uses their negotiated rates, not carrier list prices.
How does the shipping calculator handle volumetric vs actual weight?+
The calculator compares actual weight against volumetric weight (L x W x H / 5000) and charges based on whichever is higher β€” standard industry practice. Users input dimensions and destination, and the calculator returns the applicable rate instantly. This eliminated 75% of support desk phone calls that were just asking 'how much to ship X to Y country?'
How does unified tracking work across different carriers?+
Each shipment in MongoDB has a nested history array storing milestone events (status, location, details, timestamp). When a carrier updates a parcel, the admin dashboard records it in this standardized format. The customer-facing tracking page renders these milestones identically regardless of which carrier generated them β€” DHL and Bluedart updates look the same to the recipient.
What security measures protect the admin dashboard?+
The admin panel β€” where shipments are created and tracking milestones updated β€” uses JWT session authentication with bcrypt-hashed passwords. API routes that modify shipment data require valid JWT tokens. Rate limiting on the tracking search endpoint prevents automated scraping of shipment status data.
Can you build a similar portal for our logistics company?+
Yes. The Forces Express build took 18 days. We need: your carrier partnerships (for rate integration), your tracking workflow (how milestones are generated), and your customer-facing requirements (calculator, tracking, booking forms). We handle the full-stack engineering, database design, and deployment.
Related Services

How we can help you

Custom Web Development

Full-stack platforms with Next.js, React, and MongoDB

SaaS Development

Admin dashboards, auth systems, and API-first backends

Technical SEO

Performance optimization and structured data implementation

Related Work

Similar projects

SaleBuy

AI-powered C2C marketplace with Gemini vision integration for auto-listing.

MarketplaceAI IntegrationMongoDB
View case study

Nescon Lifts

B2B industrial catalog with multi-step lead qualification engine.

B2B PlatformLead GenNext.js
View case study

Online Planet

Full-stack e-commerce platform with admin panel and order management.

E-commerceFull-StackDashboard
View case study

Need a logistics or operations platform?

We build custom portals with tracking systems, calculators, and admin dashboards.

Start a Project Estimate Cost
← Prev: SaleBuyNext: IAGT International β†’
GenForge Studio Logo
GenForge Studio

GenForge Studio is a digital agency based in Lucknow, India. We build high-performance websites, apps, and digital products for businesses ready to grow.

Services

  • All Services
  • Web Development
  • UI/UX Design
  • SaaS Development
  • E-commerce Development
  • Startup Web Development
  • Technical SEO
  • Web Agency Lucknow

Company

  • Projects
  • Clients & Results
  • About Us
  • Our Team
  • Careers
  • Read Blogs
  • Privacy Policy
  • Terms of Service
  • Cookies Settings

Get in touch

Have a project in mind? Let’s build something remarkable together.

hello@genforgestudio.com+91 72338 11034+91 73908 03067

Lucknow, IndiaUttar Pradesh

Schedule a call
Locations Served:LucknowNoidaDelhiBangaloreMumbaiPuneHyderabad

Β© 2026 GenForge Studio. All rights reserved.

PrivacyTermsRefund PolicyCookies

GenForge Studio