project-1b-api-github
v1.0.0
Published
Acceso a la API de Github de un usuario
Downloads
3
Readme
proyect-1b-api-github
Module to get data from a user from the github api
Install
npm proyect-1b-api-github
Use
// Get data from a user from the github api
const { getUser } = require('proyect-1b-api-github')
const userName = 'damenor'
getUser(userName)
.then(data => console.log(data))
.catch(error => console.error(error))