Skip to content

JoaoIto/JoaoIto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 

Repository files navigation

🌟 Hey! I’m João! 😊

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. 🚀


Streak

Techs:

Next JS React NodeJS NestJS JavaScript TypeScript Java MongoDB Postgres MySQL Vercel

Social:

github contribution grid snake animation
// 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!' });
}

About

Config files for my GitHub profile.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published