

Introduction to Remix JS: The Next.js Alternative | Bits and Pieces
source link: https://blog.bitsrc.io/an-alternative-to-next-js-everything-you-need-to-know-about-remixjs-3b4fa3800ebf
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

An Introduction to Remix JS: The Next.js Alternative
Remix is a new full-stack JavaScript framework that does away with static site generation and performs a few things differently than current frameworks. It uses React to render the user interface, and it shares quite a number of similarities with Next.js.
There are, nevertheless, clear distinctions, such as nested routes, data fetching, saving management, and error handling. Let’s take a look at those ideas and see how they stack up against other strategies that are already being employed in popular frameworks.
Nested Routing
A very neat mechanism in Remix is the ability to render parts of a page based on the route we’re on. This React Router functionality allows Remix to predict what you’re going to render before you do. This allows Remix to retrieve data, stylesheets, and modules for the next page, or only the altered portion of the current page.
In other frameworks, this would imply either a new route with its own index file or a route that is specially matched to one or more components. We’re used to tying different sections of our URL to distinct routes or components — Remix’s approach is best described as nested layouts, with each part of the URL connected to a route file by definition.

Under the hood, this allows Remix to preload the various sections of a page, making it extremely quick and allowing us to minimise as many loading states as possible.
Error Handling
Error handling is inbuilt in Remix. It’s error handling is unusual in that it allows us to define ErrorBoundaries that will be displayed if something with our route components doesn’t perform as planned and an error is produced. That way, if we use Remix’s nested routes, we may only notice a single throwing fault, rather than the entire page.
Error borders are clever in that they bubble up (the routes) to the nearest error boundary. As a result, the simplest case would be to have a single error border at the root level, similar to a full 404.
When your websites run into problems, they don’t need to be refreshed. Remix handles errors while rendering on both the client and the server — even during server side data handling. If we’re using Remix’s nested routes, we might see a single error thrown, but not necessarily the whole page.
Implementing an error boundary is as simple as adding an ErrorBoundary function to our route components as shown below:
The following image demonstrates how having multiple small error boundaries can leave the rest of an application intact.

Now let us install Remix
First, fire up your terminal and run the following command:
After the installation is complete, you can see the following message:

Type the name of the folder you want and also its position and press Enter:

Choose the Remix App Server
option (can be changed later):

Choose the language you wish to choose — I’ll be choosing plain old JavaScript for now:

Choose yes and let it run npm install
:
After the installation is complete, you can see this message. Now use cd
<your folder name>
and then run the following command to go into development mode:

Click on the localhost link to open the server in the default browser:

And that’s it — you’ve successfully installed Remix!
The code structure for the file above is:

Conclusion
In this article we learned about the main features of Remix:
- Nested routing. A very neat mechanism the allows us to render parts of a page based on the route we’re on.
- Error handling using Error boundaries. The neat part of this feature is that we can define our boundaries with a simple function definition.
- We also covered the basics to get started with Remix for your project, so you have no excuse now, you have to try it!
Remix is a comparatively a new framework in the programming world. It has many more features to come and more community support too. We are yet to witness mainstream usage of Remix.
Resources
Originally published at https://www.epicprogrammer.com.
Recommend
-
51
Debugging with GitLearn how to debug using Git’s Blame and Bisect
-
48
Introducing Bit.dev WebhooksLet your apps and services “know” when components are added, removed or updated — to boost your workflow!
-
12
6 Ways to Share and Reuse React ComponentsShare React components between projects in a managed way to keep your codebase DRY and maintainable.
-
9
11 Great Tools for a Monorepo in 2021Probably the best tools to develop and build your monorepo.
-
142
How we Build a Design SystemBuilding a design system with components to standardize and scale our UI development process.
-
16
Namespace in JavaScript — The BasicsOrganized meaningful code...
-
11
NPM CLI v7.0— The Top Five Features That Grabbed My AttentionExploring the latest features of NPM CLI v.7.0
-
5
How to Update or Change UI Component in Many ApplicationsThe true story of how one company changed its logo in 600+ modern applications — in one day.A couple of months ago a world-class web in...
-
4
Is Remix JS the Next Framework for You?If you’re a React developer, you might want to check it out!Remix is the new kid on the block, the flashy website and the detailed documentation give off...
-
7
Remix JS: Let’s Create a Server-Side Rendered AppAn introduction to Remix JS and Remix features. How to build an app with Remix. How to use in-built route loading and nested routes
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK