📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP

@google-automations/git-file-utils

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
r

@google-automations/git-file-utils

Utilities for github file operation

1.2.0
100

Supply Chain Security

100

Vulnerability

81

Quality

77

Maintenance

100

License

Version published
Weekly downloads
65K
-2.36%
Maintainers
1
Weekly downloads
 
Created
Issues
91

git-file-utils

This is a small library for handling git files. Currently it only provides RepositoryFileCache which is a read-through cache for a single branch. Because this library uses GIt Data API, it can fetch files up to 100 MB of size.

Install

npm i @google-automations/git-file-utils

Fetch a file

import {Octokit} from '@octokit/rest';
import {
  FileNotFoundError,
  RepositoryFileCache
} from '@google-automations/git-file-utils';

const octokit = new Octokit();
const cache = new RepositoryFileCache(
  octokit,
  {
    owner: "googleapis",
    repo: "repo-automation-bots",
  });
try {
  const contents = await cache.getFileContents("README.md", "main");
  console.log(`content: ${contents.parsedContent}`);
} catch (e) {
  if (e instanceof FileNotFoundError) {
    console.log(`file not found`);
  } else {
    // rethrow
    throw e;
  }
}

Keywords

FAQs

Package last updated on 31 Aug 2022

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