2.1.3 • Published 4 years ago

who-does-not-follow-me v2.1.3

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

Who does not follow me

CRAN/METACRAN

Description

A Node.js script to check who does not follow you on GitHub. (based on your following and followers)

How to use

  • type yarn add who-does-not-follow-me or npm i who-does-not-follow-me -s

Parameters

  • username (github's username)
  • client_id (github's oauth app token for make more requests)
  • client_secret (github's oauth app token for make more requests)

Code

Clean output:

import whoDoesNotFollowMe from 'who-does-not-follow-me';

async function notFollowers(
	username: string,
	clientId?: string,
	clientSecret?: string,
) {
	const { thesePeopleDoNotFollowMe } = await whoDoesNotFollowMe({
		username,
		client_id: clientId,
		client_secret: clientSecret,
	});

	console.log(thesePeopleDoNotFollowMe);
}

notFollowers('lucasgdb'); // []

Image

who-does-not-follow-me

Author

@lucasnaja
2.1.3

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago