Introduction to Nalth Framework
Nalth is a security-first TypeScript framework built on Vite.js foundations. It provides enterprise-grade security by default while maintaining lightning-fast performance.
Key Features
- •🔒 HTTPS Everywhere: Automatic HTTPS with self-signed certificates in development
- •⚡ Vite.js Powered: Built on Vite.js with 100% plugin compatibility
- •🛡️ Security by Default: Built-in CSP, SRI, and security headers
- •🚀 Zero Configuration: Works out of the box with sensible defaults
Why Nalth?
Traditional frameworks often treat security as an afterthought. Nalth takes a different approach by making security the foundation of your application from day one.
// Nalth automatically handles security
import { createApp } from 'nalth'
const app = createApp({
// Security features enabled by default
https: true,
csp: 'auto',
sri: true
})