
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
@google-automations/git-file-utils
Advanced tools
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.
npm i @google-automations/git-file-utils
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;
}
}
FAQs
Utilities for github file operation
We found that @google-automations/git-file-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.