react-with-clean-architecture VS clean-react

Compare react-with-clean-architecture vs clean-react and see what are their differences.

clean-react

Sistema em ReactJs usando Hooks, Typescript, TDD, Clean Architecture, Design Patterns e SOLID principles (by rmanguinho)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
react-with-clean-architecture clean-react
2 3
659 1,370
- -
4.7 0.0
6 days ago about 1 year ago
TypeScript TypeScript
Do What The F*ck You Want To Public License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

react-with-clean-architecture

Posts with mentions or reviews of react-with-clean-architecture. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-10.

clean-react

Posts with mentions or reviews of clean-react. We have used some of these posts to build our list of alternatives and similar projects.
  • A importância da Clean Architecture
    1 project | dev.to | 4 Sep 2022
    Rodrigo Manguinho em Clean React
  • Clean Architecture: Applying with React
    1 project | dev.to | 24 Jul 2022
    In src/presentation/pages/ the Login page will be created, which is composed by components, methods and functions. The component that calls the authentication function is the that is contained in the form to get the input values, as shown in the following code snippet: Enter fullscreen mode Exit fullscreen mode When clicking on the Button, the handleSubmit() that is in the onSubmit of the form is called. const handleSubmit = async ( event: React.FormEvent ): Promise => { event.preventDefault(); try { const account = await authentication.auth({ email: state.email, password: state.password, }); setCurrentAccount(account); history.replace('/'); } catch (error) { // Error handling here } }; Enter fullscreen mode Exit fullscreen mode Where the authentication.auth() on click will call a factory (we'll see later) to do the authentication. In this case, it is passing the parameters captured by the input and the value returned from the request is saved in the cache through setCurrentAccount(account). Fourth step: Connect all layers for requests to work After everything is implemented, now just connect all the parts. For this, the design pattern Factory Method is used. Inside src/main/factories/usecases we create the factory of the use case being implemented. In the case of this example, it is related to authentication. The makeRemoteAuthentication is created, which returns the RemoteAuthentication that receives as a parameter the factory of the Http Client and the factory that creates the URL. The URL of the API you want to request is passed as a parameter along with the factory that creates the URL. In the example it is the URL that ends with /login. import { RemoteAuthentication } from '@/data/usecases/'; import { IAuthentication } from '@/domain/usecases'; import { makeAxiosHttpClient, makeApiUrl } from '@/main/factories/http'; export const makeRemoteAuthentication = (): IAuthentication => { const remoteAuthentication = new RemoteAuthentication( makeApiUrl('/login'), makeAxiosHttpClient() ); return remoteAuthentication; }; Enter fullscreen mode Exit fullscreen mode After that, in src/main/factories/pages, the folder for the Login factories is created. In pages with forms, form validations are also injected, but as the focus of this text is on integrations, we will leave this point out of the explanation. import React from 'react'; import { Login } from '@/presentation/pages'; import { makeRemoteAuthentication } from '@/main/factories/usecases/'; const makeLogin: React.FC = () => { const remoteAuthentication = makeRemoteAuthentication(); return ( ); }; export default makeLogin; Enter fullscreen mode Exit fullscreen mode A makeLogin const representing the factory is created. It has makeRemoteAuthentication which is injected inside the Login page created in the presentation layer so that the page has access to these requests. Fifth step: Apply the page created in the application Finally, it is necessary to call the Login factory in the application, so that it can be accessed by the user. In the router.tsx file located in src/main/routes, add the factory page created into the Switch inside BrowserRouter. The route is passed in the path, in this case it is /login, and the page in the component, which in this case is the pointer to the makeLoginPage factory . This logic is used with all other pages, only changing from Route to PrivateRoute if the route is authenticated. The code looks like this below. const Router: React.FC = () => { return ( ); }; Enter fullscreen mode Exit fullscreen mode Conclusion Clean Architecture despite being a bit complex to understand and implement at the beginning - and even seem redundant -, abstractions are necessary. Several design patterns are applied to ensure the quality and independence of the code, facilitating the evolution and independent maintenance of the framework. In cases like this, if you want to change the framework from React to Angular or any other Typescript based framework, just change the presentation layer and make adjustments to the dependencies. Following the development process and understanding why you are doing it in such a way makes code production easier. After a while it ends up being done naturally, as it has a linear development process: I. Use case in the domain layer; II. Use case in the data layer; III. Creation of UI in the presentation layer; IV. Creation of factories to integrate all layers into the main layer; V. And the call of the main factory in the application routes. As the example has many abstracted parts, it is recommended that you read the code for the hidden parts for a better understanding. In this repository you can access abstracted code similar to the one given in this example. You can also access this architecture just by running the npx @rubemfsv/clean-react-app my app command, similar to create-react-app, but in a cleaner and more scalable way. Find out how to do it reading this post. References Rodrigo Manguinho https://github.com/rmanguinho/clean-react MARTIN, Robert C. Clean Architecture: A Craftsman’s Guide to Software Structure and Design. 1st. ed. USA: Prentice Hall Press, 2017. ISBN 0134494164.
  • Arquitetura Limpa: Aplicando com React
    1 project | dev.to | 15 Jul 2022

What are some alternatives?

When comparing react-with-clean-architecture and clean-react you can also consider the following projects:

React-App-Clean-Architecture - Sample code of React + Redux-toolkit + typescript with Clean architecture

Server-Driven-UI - A framework example for Server Driven UI (SDUI) that teaches you the best practices to scale.

reduxt-toolkit-thunk-book-app

clean-architecture-react - Clean Architecture Example Using React.js

Open-API-Android-App-Clean

react-use-wizard - 🧙 A React wizard (stepper) builder without the hassle, powered by hooks.

simple-blog-application-backend-challenge - Code Challenge: Simple Blog API built with TypeScript and MongoDB, using TDD, Clean Architecture, SOLID principles, and Design Patterns.

react-table - 🤖 Headless UI for building powerful tables & datagrids for TS/JS - React-Table, Vue-Table, Solid-Table, Svelte-Table

domain-driven-hexagon - Learn Domain-Driven Design, software architecture, design patterns, best practices. Code examples included

entangle - Global state management tool for react hooks inspired by RecoilJS and Jotai using proxies.

ic-wall - The Wall is a crossover Ethereum/Internet Computer demo app. Use Metamask to login to Internet Computer. Then, write on the wall! ∞

sakana - 🐟「Sakana!」石蒜模拟器