
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Returns a parsed representation of a glob string; does not require Minimatch.
wildglob uses glob-parse
to parse the different segments of the input glob and then combines the string segments to determine where to start glob matching.
glob2base extracts a base path from a glob. It uses Minimatch to do this, but glob-parse
(the .basename()
function) can also be used to extract the base path from a glob.
var parse = require('glob-parse');
console.log(parse('js/*.js'));
// [ 'js/', '*', '.js' ]
console.log(parse('js/**/test/*.js'));
// [ 'js/', '**', '/test/', '*', '.js' ]
basename()
works like glob2base
:
console.log(parse.basename('js/test{0..9}/*.js'));
// js/
console.log(parse.basename('js/t+(wo|est)/*.js'));
// js/
console.log(parse.basename('lib/{components,pages}/**/{test,another}/*.txt'));
// lib/
Pass { full: true } to return the token type annotations.
console.log(parse('js/t[a-z]st/*.js', { full: true }));
// { parts: [ 'js/t', '[a-z]', 'st/', '*', '.js' ],
// types: [ 'str', 'set', 'str', '*', 'str' ] }
console.log(parse('js/{src,test}/*.js', { full: true }));
// { parts: [ 'js/', '{src,test}', '/', '*', '.js' ],
// types: [ 'str', 'brace', 'str', '*', 'str' ] }
console.log(parse('test/+(a|b|c)/a{/,bc*}/**', { full: true }));
// { parts: [ 'test/', '+(a|b|c)', '/a', '{/,bc*}', '/', '**' ],
// types: [ 'str', 'ext', 'str', 'brace', 'str', '**' ] }
FAQs
Returns a parsed representation of a glob string; does not require Minimatch.
The npm package glob-parse receives a total of 1,176 weekly downloads. As such, glob-parse popularity was classified as popular.
We found that glob-parse 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.