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

list-github-dir-content

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

list-github-dir-content

List all the files in a GitHub repo’s directory

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.5K
increased by18.46%
Maintainers
1
Weekly downloads
 
Created
Source

list-github-dir-content Build Status

List all the files in a GitHub repo’s directory

Install

$ npm install list-github-dir-content

Usage

const listContent = require('list-github-dir-content');

const myToken = '000'; // https://github.com/settings/tokens

// They have the same output
const filesArray = await listContent.viaTreesApi('Microsoft/vscode', 'src', myToken);
// OR
const filesArray = await listContent.viaContentsApi('Microsoft/vscode', 'src', myToken);
// OR
const filesArray = await listContent.viaContentsApi('Microsoft/vscode#master', 'src', myToken);

// ['src/file.js', 'src/styles/main.css', ...]

// listContent.viaTreesApi also adds a `truncated` property
if (filesArray.truncated) {
	// Perhaps try with viaContentsApi?
}

API

listContent.viaTreesApi(identifier, directory, token)

listContent.viaContentsApi(identifier, directory, token)

Both methods return a Promise that resolves with an array of all the files in the chosen directory. They just vary in GitHub API method used. The paths will be relative to root (i.e. if directory is dist/images, the array will be ['dist/images/1.png', 'dist/images/2.png'])

viaTreesApi is preferred when there are a lot of nested directories. This will try to make a single HTTPS request for the whole repo, regardless of what directory was picked. On big repos this may be of a few megabytes. (GitHub API v3 reference)

viaContentsApi is preferred when you're downloading a small part of a huge repo. This will make a request for each subfolder requested, which may mean dozens or hundreds of HTTPS requests. (GitHub API v3 reference)

Notice: while they work differently, they have the same output if no limit was reached.

Known issues:

  • viaContentsApi is limited to 1000 files per directory
  • viaTreesApi is limited to around 60,000 files per repo
identifier

Type: string

user/repo or user/repo#reference combination, such as Microsoft/vscode or Microsoft/vscode#master. If the reference is omitted, the default branch will be used.

directory

Type: string

The directory to download, like docs or dist/images

token

Type: string

A GitHub personal token, get one here: https://github.com/settings/tokens

License

MIT © Federico Brigante

Keywords

FAQs

Package last updated on 17 Apr 2018

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