Passionate about technology, I turn ideas into code that connects people and solves problems. 🚀
As a fullstack developer, I specialize in Node.js, React.js,Next.js and TypeScript, building robust applications and stunning interfaces.
Expertise in databases like MongoDB, PostgreSQL, and MySQL, always aiming for efficiency and scalability.
An Information Systems undergraduate at Tocantins State University, I’m always ready to innovate and deliver impactful solutions.
Fullstack Web Developer at Hust App, an online service automation and management platform for businesses. 🚀
// pages/index.tsx (Next.js)
import { useEffect, useState } from 'react';
export default function Home() {
const [message, setMessage] = useState<string>('');
useEffect(() => {
fetch('/api/message')
.then(res => res.json())
.then(data => setMessage(data.message));
}, []);
return <h1>{message}</h1>;
}
// pages/api/message.ts (Next.js API route)
export default function handler(req, res) {
res.status(200).json({ message: 'João with React + Node.js magic!' });
}