
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.
@vivocha/scopes
Advanced tools
An utility to parse and test Vivocha OpenAPI Scopes.
import { Scopes } from '@vivocha/scopes';
// Scopes can be passed as string or string[]
const s = new Scopes(["User.*", "-User.create", "Sessions.read", "*.update"]);
s.match("User.read"); // true
s.match("User.create"); // false
s.match("Session.delete"); // false
s.match("Asset.update"); // true
Character '*' means 'everything'
const s2 = new Scopes("*");
s2.match("User.delete"); // true
s2.match("Account.update"); // true
const s3 = new Scopes("*.delete");
s3.match("User.delete"); // true
s3.match("Account.update"); // false
const s4 = new Scopes("User.*");
s4.match("User.create"); // true
s4.match("User.read"); // true
s4.match("User.update"); // true
s4.match("User.delete"); // true
s4.match('Accound.read'); // false
import { Scopes } from '@vivocha/scopes';
const s5 = new Scopes(["User.*"]);
s5.filter("User.delete").toArray() // ["User.delete"]
const s6 = new Scopes(["User.*", "-User.delete", "*.read"]);
s6.filter("User.delete User.update Asset.delete Asset.update Asset.read").toArray() // ["User.update", "Asset.read"]
If you want to retrieve the Scopes value you can use toString
and toArray
methods.
import { Scopes } from '@vivocha/scopes';
const s = new Scopes(["User.*", "-User.create", "Sessions.read", "*.update"]);
s.toString() // User.* -User.create Sessions.read *.update
s.toArray() // ['User.*', '-User.create', 'Sessions.read', '*.update']
FAQs
Vivocha API Scopes Utilities
The npm package @vivocha/scopes receives a total of 396 weekly downloads. As such, @vivocha/scopes popularity was classified as not popular.
We found that @vivocha/scopes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
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.