Best of Vite — December 2022
- 1
- 2
Changelog·3y
Announcing SvelteKit 1.0
SvelteKit is the recommended way to build apps of all shapes and sizes. It runs wherever JavaScript runs, you can deploy your app as a traditional Node server. Unlike traditional ‘multi-page app’ or MPA frameworks, it defaults to client-side navigation after the initial server-rendered page load.
- 3
Next.js·3y
Blog - Next.js 13.1
Next.js 13.1 includes improvements to both the (stable) and (beta) directories. New routing and data fetching system can be incrementally adopted alongside your existing directory. New TypeScript plugin provides suggestions for page and layout configuration options, brings helpful usage hints around Server and Client Components.
- 4
asayer·3y
How to Build your React.js App using Vite
Vite is made to speed up the build process and provide a faster development experience for modern web apps. It uses Native modules (ESM) based dev server. Vite bundles all the dependencies, modules, and code together for production. Vite uses ESM to load routes separately, and a module is only executed if the request made.