Still in early development.
Fast prototyping with template engines and integrated frontend tools
- ⚡ Vite integrated
- 🚀️ Fast prototyping
- 🛠️ Integrated tools
- 💡 Template engines
- 📦 Modular structure
- ✉️ Email templates
Vituum is a small wrapper around Vite which includes predefined config and set of plugins.
It's a mix of words Vite (French word for "quick") and Tuum (Estonian word for "core").
- Primary focus is on backend integration, but can be used for anything.
- Modified build command
vituum build
is used, which supports building of template engine files with extname such as.twig
or.pug
Learn more about Vituum on Features page.
mkdir my-project && cd my-project
npm i vituum --save-dev
Each Vituum project needs to have config via vite.config.js
Read the Docs to learn more about configuration
import { defineConfig } from 'vituum'
export default defineConfig({
// vituum config here
})
You can try Vituum online on Stackblitz or view all examples on GitHub
- refactoring and rewrite to TypeScript
- tests written via Vitest
MIT