Break the limits of Web with Nue.Js, a standards first web framework.

In this article, we will review NueJs, a standards first web framework. I saw Nue.js was trending #1 on Github and visited their site. What stood out to is this below comparison. Nuejs demonstrates how they have built a large-scale app with the build size — 39kb, whereas in React, a simple button took 79kb. You can find the benchmark details. Installation To get started with Nue, you will have to follow the below steps: Install Bun # Install Bun curl -fsSL https://bun.sh/install | bash 2. Install Nue # Install Nue bun install nuekit --global 3. Install app nue create simple-blog # This creates a simple blog # or nue create simple-mpa # This creates a multi-page application 4. View the application at http://localhost:8083/ Read more about Nue.js in their documentation. About me: Hey, my name is Ramu Narasinga. I study large open-source projects and create content about their codebase architecture and best practices, sharing it through articles, videos. I am open to work on interesting projects. Send me an email at ramu.narasinga@gmail.com My Github — https://github.com/ramu-narasinga My website — https://ramunarasinga.com My Youtube channel — https://www.youtube.com/@ramu-narasinga Learning platform — https://thinkthroo.com Codebase Architecture — https://app.thinkthroo.com/architecture Best practices — https://app.thinkthroo.com/best-practices Production-grade projects — https://app.thinkthroo.com/production-grade-projects References: https://nuejs.org/ https://github.com/nuejs/nue

Apr 7, 2025 - 05:17
 0
Break the limits of Web with Nue.Js, a standards first web framework.

In this article, we will review NueJs, a standards first web framework.

Image description

I saw Nue.js was trending #1 on Github and visited their site. What stood out to is this below comparison.

Image description

Nuejs demonstrates how they have built a large-scale app with the build size — 39kb, whereas in React, a simple button took 79kb. You can find the benchmark details.

Installation

To get started with Nue, you will have to follow the below steps:

  1. Install Bun
# Install Bun
curl -fsSL https://bun.sh/install | bash

2. Install Nue

# Install Nue
bun install nuekit --global

3. Install app

nue create simple-blog # This creates a simple blog
# or
nue create simple-mpa # This creates a multi-page application

4. View the application at http://localhost:8083/

Read more about Nue.js in their documentation.

About me:

Hey, my name is Ramu Narasinga. I study large open-source projects and create content about their codebase architecture and best practices, sharing it through articles, videos.

I am open to work on interesting projects. Send me an email at ramu.narasinga@gmail.com

My Github — https://github.com/ramu-narasinga

My website — https://ramunarasinga.com

My Youtube channel — https://www.youtube.com/@ramu-narasinga

Learning platform — https://thinkthroo.com

Codebase Architecture — https://app.thinkthroo.com/architecture

Best practices — https://app.thinkthroo.com/best-practices

Production-grade projects — https://app.thinkthroo.com/production-grade-projects

References:

  1. https://nuejs.org/

  2. https://github.com/nuejs/nue