Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@axa-ch/alt-pod-havarie
Advanced tools
Migration of old Frontend lib to its own pod.
This is a pure migration from my side 😇!
Refcatoring done so far:
Keeping as technical depth:
<a>
instead of <button>
as example)setAgents
action between <HavarieFilter>
and <HavarieList>
<HavarieList>
keeps state of <HavarieAgent>
such as areDetailsVisible.WTF:
const dummy = Array.apply(null, { length: Math.max(comTypes.length, communications.length) })
return dummy.map((item, index) => {
const comType = comTypes[index]
return {
type: comTypeMap[comType] || comType,
communication: communications[index],
}
})
Normalised:
const dummy = [];
for (let i = 0; i < Math.max(comTypes.length, communications.length); i++) {
const comType = comTypes[i];
dummy.push({
type: comTypeMap[comType] || comType,
communication: communications[i],
});
}
return dummy;
"version": "1.0.0"
field. Please follow semver best practicesnpm run release
FAQs
The havarie pod of axa.ch
The npm package @axa-ch/alt-pod-havarie receives a total of 1 weekly downloads. As such, @axa-ch/alt-pod-havarie popularity was classified as not popular.
We found that @axa-ch/alt-pod-havarie demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 48 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.