Software:Nuxt.js

From HandWiki
Short description: Open source web framework using Vue.js and Nitro
Nuxt
Logo Nuxt Black (2023).svg
Original author(s)Alexandre Chopin, Sebastien Chopin, Pooya Parsa
Initial releaseOctober 26, 2016; 7 years ago (2016-10-26)[1]
Written inTypeScript
PlatformCross-platform
Size57 KB production
TypeJavaScript library
LicenseMIT License[2]
Websitenuxt.com

Nuxt is a free and open source JavaScript library based on Vue.js, Nitro, and Vite. Nuxt is inspired by Next.js,[3] which is a framework of similar purpose, based on React.js.

The framework is advertised as a "Meta-framework for universal applications". The term universal is used here with the meaning that the goal of the framework is to enable users to create web views in JavaScript utilizing the Vue.js single file component system and that can function both as in-browser single page application (SPA) views as well as server-rendered web views which are then (after server rendering) "rehydrated" to full SPA functionality.[4][5] Additionally, the framework enables users to have the content, or parts of it, fully pre-rendered on the server and served in the manner of static site generators.

The benefits of this approach are, among others, reduced time to interactivity and improved SEO compared to SPAs, due to the fact that full contents of each page are being served by the web server before any client-side JavaScript is executed. Put alternatively, one can maintain both the benefits of traditional server-side rendered HTML pages, and improved interactivity and advanced user interface of SPAs. The core benefit of the Nuxt framework itself is that it makes the configuration and setup of such applications simplified and seamless to the application developer, who can simply develop UI portions of the application as if it were a more common Vue.js single file application.

See also

References

External links