Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
famous-git-cache
Advanced tools
Module for git cloning repos to a cache folder on disk and managing that cache
This module is used to fetch the a git repo, checkout a specific version
and then return a plain old JavaScript key-value object hash where the key is
the relative path (e.g. core/Engine
) and the value is the raw content
of the that module as a string.
var fetchFamous = require('famous-git-cache').fetchFamous;
fetchFamous('0.2.1', function(err, famous) {
if (err) { return console.log(err); }
/* do something with famous */
});
var clone = require('famous-git-cache').clone;
clone({
repo: 'git@github.com:Famous/core.git',
ref: 'master'
}, function(err, corePath) {
if (err) { return console.log(err); }
/* do something with corePath */
});
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
FAQs
Module for git cloning repos to a cache folder on disk and managing that cache
The npm package famous-git-cache receives a total of 0 weekly downloads. As such, famous-git-cache popularity was classified as not popular.
We found that famous-git-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.