© 2023 Hashnode
#nx
In this article, we will learn how to create an Nx repository for Next.js which contains two projects: User and Admin. Nx is a powerful tool that allows developers to manage multiple projects within a…
The Lego approach to frontend development is based on the idea of building a frontend application out of modular, reusable UI components, much like building a structure out of Lego bricks. Each UI com…
So, you've been hearing a lot about monorepos. Maybe a little bit of turborepo, blaze, or nx. Or maybe you haven't! Anyway, in this blog, I'll explain what monorepos are, how I prefer to use them pers…
A scalable Angular application requires the appropriate structure and pattern. Enter Nx workspace. It's a tool suite that assists you in building, managing, and maintaining a monorepo at any scale. Nx…
Preface Is your team aware of the relations between your modules? Is a team member able to understand what is affected by the changes in a new feature quickly? Probably your answer is: it depends. It …
Create a new empty Nx Workspace Nx is a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Nx site We can create and configure a new NX workspac…
I used the near-wallet-selector library. NEAR Guestbook example starting to understand smart contract structure. Run it via Gitpod. As my test account, I wrote the dev-account file under the neardev f…
Nothing could be better than angular when we think about web application development for the client side. Angular is famous as a front-end development framework. But to access the full stack app devel…
In the previous blog we did the setup for monorepo and created a components lib to share components between react-native and next app now we will add Native-Base in our project and will see how we can use those components. Installation We w…
In this article, we will start with Nx Workspace to set up a monorepo that will contain the Next JS web application and React Native app with the expo. Then we will add configuration for react-native-web in the NextJS app which will help us…