Noel Owolabi

Turning complex problems into simple, scalable software.

I am a Senior Software Engineer with over 6+ years of experience designing and shipping web, mobile, and cloud-based solutions. I specialize in Flutter for mobile, Laravel and Node.js for backend, and modern frontend frameworks like React and Next.js. Having worked as both a consultant and CTO, I thrive at bridging business needs with technical execution — from architecting systems on AWS to delivering user-centric apps that scale.

welcome.ts

// app/api/welcome/main.go
package main

import (
  "encoding/json"
  "net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
  response := map[string]string{
    "message": "System online. Emmanuel (Noel) Owolabi’s portfolio API is live 🚀",
  }
  json.NewEncoder(w).Encode(response)
}

func main() {
  http.HandleFunc("/welcome", handler)
  http.ListenAndServe(":8080", nil)
}