Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@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
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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.