![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
backbone-publication
Advanced tools
Supports backbone classes backed by `publication-client` reactive queries.
backbone-publication
implements the boilerplate code that is required to make
backbone
and our publication based system (through
publication-client
)
play nicely together. To use these classes, you simply need to instantiate them
with the necessary reactive queries from a publication-client
. This normally
can be done in the bootstrapping process. For instance:
// During the bootstrapping process we normally initialize most
// collections/models - using `backbone-publication` collections/models is no
// different.
var featureCollection = new FeatureCollection(initialPayload.features, {
// pubClient is initialized by using the `publication-client` constructor.
reactiveQuery: pubClient.getCollection('features').find({ userId: getUser().id }),
waitOn: pubClient.subscribe('features', ['branding'])
}));
Where FeatureCollection is defined as:
import { PublicationCollection } from 'backbone-publication';
// Note that we only need to extend the Publication[Collection,Model]s if we
// need to add custom behavioural overrides.
var FeatureCollection = PublicationCollection.extend({
// Code removed for example purposes.
});
export default FeatureCollection;
FAQs
Supports backbone classes backed by `publication-client` reactive queries.
We found that backbone-publication demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 29 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.