Skip to content

Guilhermecheng/github-blog

Repository files navigation

github-blog

My first personal blog!

homepage sreenshot blog page screenshot

A blog based in Github's API.
All blog posts are just issues from this repository.

Github API

Github API is used to get user info and and issues.

// User data
  const response = await axios.get(`https://api.github.com/users/${username}`)
// Issues list
  const response = await axios.get(`https://api.github.com/search/issues?q=${query}repo:${username}/${repo}`)
// Issue
  const response = await axios.get(`https://api.github.com/repos/${username}/${repo}/issues/${slug}`)

About

My first personal blog! Created using React, Tailwind and Github API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published