Neutronium is an ultra-dense JavaScript framework focused on maximum performance and minimal runtime overhead. It prioritizes explicit control, predictable behavior, and efficiency over hidden abstractions.
Neutronium is designed to be the most efficient and lightweight JavaScript framework available. It minimizes overhead while maximizing performance, making it ideal for high-performance applications.
Neutronium avoids heavy virtual DOMs and complex reactivity layers. Instead, it focuses on direct execution, minimal abstractions, and performance-first design, making it suitable for performance-critical applications.
Neutronium is actively developed and suitable for experimentation, internal tools, and performance-focused projects. Stability and API consistency are key goals as the framework evolves.
To link css file you can simple use the useEffect hook to create a link element and append it to the head of the document. Example:
useEffect(() => {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'path/to/your/styles.css';
document.head.appendChild(link);
return () => {
document.head.removeChild(link);
};
}, []);>
return (
<div className="your-component">
{/* Your component content */}
</div>
);
or
<p style="color: red;"></p>
similarly you can link js files, or use useEffect instead