
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
use-vuex-store
Advanced tools
npm install use-vuex-store -S
import {
useState,
useGetters,
useActions,
useMutations,
} from "@/hooks/use-vuex-store";
// 直接使用 State
const storeState = useState("demo", ["demoList"]);
// 换名使用 State
const { listStateNewName } = useState("demo", { listStateNewName: "demoList" });
// 直接使用 Getters
const { getList } = useGetters("demo", ["getList"]);
// 换名使用 Getters
const { listNewName } = useGetters("demo", { listNewName: "getList" });
// 直接使用 Actions
const { addAction } = useActions("demo", ["addAction"]);
addAction({ a: 9 });
// 重命令 Actions
const { addAc } = useActions("demo", { addAc: "addAction" });
addAc({ a: 99 });
addAc({ a: 922 });
// 直接使用 Mutations
const { addMutation, removeMutaion } = useMutations("demo", [
"addMutation",
"removeMutaion",
]);
addMutation({ b: 666 });
removeMutaion({ id: "008" });
// 重命名 Mutations
const { add, remove } = useMutations("demo", {
add: "addMutation",
remove: "removeMutaion",
});
setTimeout(() => {
add({ b: 99999999999 });
remove({ id: "001" });
}, 5000);
FAQs
## install ``` npm install use-vuex-store -S ```
We found that use-vuex-store 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.