Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

getrepos

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

getrepos

Fetch the specified repositories, or those that match a particular github user or search query

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
decreased by-73.77%
Maintainers
1
Weekly downloads
 
Created
Source

Get Repos

NPM version Flattr this project

Fetch the specified repositories, or those that match a particular github user or search query

Install

npm install --save getrepos

Usage

// Create our getrepos instance
var getter = require('getrepos').create({
	githubClientId: null,      // optional, will try process.env.GITHUB_CLIENT_ID
	githubClientSecret: null,  // optional, will try process.env.GITHUB_CLIENT_SECRET
	log: console.log           // optional, arguments: level, message... 
});

// Fetch the data on these github repositories
getter.fetchRepos(['bevry/getrepos'], function(err){
	console.log(err);

	// Fetch all the repo data on these github users/organisations
	getter.fetchReposFromUsers(['bevry'], function(err){
		console.log(err);

		// Get the combined listing
		console.log(getter.getRepos());
	});
});

Repos are returned as an array of repository objects.

History

You can discover the history inside the History.md file

License

Licensed under the incredibly permissive MIT License
Copyright © 2013+ Bevry Pty Ltd

Keywords

FAQs

Package last updated on 02 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc