Skip to content

A NPM Module i built that tells you information about you for your progress during Hacktoberfest. Yes I was bored and didn't have a smarter project to build and publish on NPM and GitHub

License

Notifications You must be signed in to change notification settings

jataggart/HacktoberfestStats

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HacktoberfestStats

THIS MODULE IS STILL NOT PUBLISHED ON NPM

This is a Module that scrapes Hacktoberfest's site and returns information on how you are doing.

Dependencies:

  • Cheerio
  • Request

Installation:

npm install hacktoberfestStats

Usage:

var Hacktoberfest = require('./main.js')

Hacktoberfest("MatejMecka", function(hacktoberfestStats,error){

	if (error) {

		console.log(error.message)

	}
	
	else {
		console.log(statsInfo)
	}

})

Options:

  • Name: The Person’s first name or Username
  • Completed: Is it Completed or Not. Returns a boolean
  • Completed Message: Returns the full message
  • Progress: How many commits a user has made: ex: 11/4
  • Contributions: All the Contributions a user did

About

A NPM Module i built that tells you information about you for your progress during Hacktoberfest. Yes I was bored and didn't have a smarter project to build and publish on NPM and GitHub

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%