
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@varandas/fetch-readme
Advanced tools
Fetch a raw readme.md from a public github repository.
With Yarn
yarn add @varandas/fetch-readmeWith npm
npm i --save @varandas/fetch-readme// Usage for commonjs
const { fetchReadme } = require('@varandas/fetch-readme');
fetchReadme({
username: 'Microsoft',
repository: 'TypeScript'
}).then(readme => console.log(readme));
// OR ES2015
import { fetchReadme } from '@varandas/fetch-readme'
(async () => {
const readme = await fetchReadme({
username: 'Microsoft',
repository: 'TypeScript'
})
console.log(readme)
})()
Both username and repository properties are required.
branch defaults to master and readme to README.md.
const config = {
username: 'andrevarandas',
repository: 'the-repository-name',
branch: 'develop',
readme: 'readme.md'
}
Note The readme file name is case sensitive.
FAQs
Fetch a raw readme file from any public Github repository
We found that @varandas/fetch-readme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.