DOCUMENTATION
Quick Start
Get your secure application running in less than a minute.
1. Create your project
Run the creation command and select your preferred template.
bash
npx create-nalth@latest my-app2. Start the server
Navigate into your project and start the development server. Notice that it runs over HTTPS by default.
bash
cd my-app
npm install
npm run dev3. Build for production
When you are ready to ship, build your application. Nalth will automatically optimize your assets and generate security headers.
bash
npm run build