Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
@wiredcraft/miniprogram-sparrow
Advanced tools
yarn add @wiredcraft/miniprogram-sparrow
// store/name.js
import { atom } from "sparrow";
export const firstName = atom("Jack");
// the action
export function updateFirstName(name) {
write(firstName, name);
}
// components/hello.js
import { write, behavior as sparrow } from "sparrow";
import { firstName, updateFirstName } from "./store/name";
Component({
atoms: { firstName },
behaviors: [sparrow],
lifetimes: {
attached() {
console.log(this.firstName);
},
},
methods: {
handleButtonOnTap() {
updateFirstName("Rose");
},
},
});
FAQs
Experimental Recoil inspired state management
We found that @wiredcraft/miniprogram-sparrow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 27 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.