Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
glob-cache
Advanced tools
Caching layer (using `cacache`) for any file globbing solution (`glob`, `fast-glob`, `tiny-glob` and `globby`). Makes you Instant Fast™ and allows you to hook into very specific & important part of the process
Caching layer (using
cacache
) for any file globbing solution (glob
,fast-glob
,tiny-glob
andglobby
). Makes you Instant Fast™ and allows you to hook into very specific & important part of the process
Please consider following this project's author, Charlike Mike Reagent, and :star: the project to show your :heart: and support.
If you have any how-to kind of questions, please read the Contributing Guide and Code of Conduct documents. For bugs reports and feature requests, please create an issue or ping @tunnckoCore at Twitter.
Project is semantically versioned & automatically released from GitHub Actions with Lerna.
Topic | Contact |
---|---|
Any legal or licensing questions, like private or commerical use | |
For any critical problems and security reports | |
Consulting, professional support, personal or team training | |
For any questions about Open Source, partnerships and sponsoring |
(TOC generated by verb using markdown-toc)
This project requires Node.js >=10.18
(see
Support & Release Policy).
Install it using yarn or
npm.
We highly recommend to use Yarn when you
think to contribute to this project.
$ yarn add glob-cache
Generated using jest-runner-docs.
Match files and folders using glob patterns. Returns a resolved Promise containing
a { results, cacache }
object - where results
is an array of Context objects
and cacache
is the cacache package.
function(options)
options.include
{Array<string>} - string or array of string glob patternsoptions.exclude
{string} - ignore patternsoptions.always
{boolean} - a boolean that makes options.hook
to always be calledoptions.hook
{Function} - a hook function passed with Contextoptions.glob
{Function} - a globbing library like glob, globby, fast-glob, tiny-glob, defaults to fast-glob
options.globOptions
{object} - options passed to the options.glob
libraryoptions.cacheLocation
{string} - a filepath location of the cache, defaults to ./.cache/glob-cache
returns
{Promise}
const tinyGlob = require('tiny-glob');
const glob = require('glob-cache');
glob({ include: 'src/*.js', glob: tinyGlob }).then(({ results }) => {
console.log(results);
});
Please read the Contributing Guide and Code of Conduct documents for advices.
For bug reports and feature requests, please join our community forum and open a thread there with prefixing the title of the thread with the name of the project if there's no separate channel for it.
Consider reading the Support and Release Policy guide if you are interested in what are the supported Node.js versions and how we proceed. In short, we support latest two even-numbered Node.js release lines.
Become a Partner or Sponsor? :dollar: Check the OpenSource Commision (tier). :tada: You can get your company logo, link & name on this file. It's also rendered on package's page in npmjs.com and yarnpkg.com sites too! :rocket:
Not financial support? Okey! Pull requests, stars and all kind of contributions are always welcome. :sparkles:
This project follows the all-contributors specification. Contributions of any kind are welcome!
Thanks goes to these wonderful people (emoji key), consider showing your support to them:
Charlike Mike Reagent 🚇 💻 📖 🤔 🚧 ⚠️ |
Copyright (c) 2020-present,
Charlike Mike Reagent <opensource@tunnckocore.com>
& contributors.
Released under the
(Parity-7.0.0 AND Prosperity-3.0.0) OR Patron-1.0.0 License.
FAQs
Best and fastest file globbing solution for Node.js - can use **any** glob library like `glob`, `globby` or `fast-glob`! Streaming, Promise and Hook APIs, with built in caching layer using `cacache`. Makes you Instant Fast™.
The npm package glob-cache receives a total of 17 weekly downloads. As such, glob-cache popularity was classified as not popular.
We found that glob-cache 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.