0.0.1 • Published 6 years ago

github-users v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

github-users

node.js module to access any Github user's data by Github API. Done for the purpose of learning node.js.

Installation

You can install this package from npm:

npm install github-users
npm install --save github-users
npm install --save-dev github-users

Use in node:

	const githubUsers = require("github-users");

	githubUsers.getData("ol-web", function(error, data){
		if(error) throw error;
		console.log(data);
	});

	githubUsers.getRepos("ol-web", function(error, repos){
		if(error) throw error;
		console.log(repos);
	});

Documentation

githubUsers has two methods. Both of them take user's Github login as a first argument and a callback function as a second argument.

The callback function returns requested user data as a second argument.

Is there something wrong?

Please tell me!