Frontend Web Frameworks

Frontend web frameworks for presentational layer has proliferated in recent years. Some of the frameworks are more suited to User Interface Interactions and others to data intensive UIs.
React
Angular
Vue
Svelte
Ember
Next JS

React

Popularity of React has been sky rocketed since its release in 2013. Originally developed inside Facebook, React has taken web UI development to the next level. We have handled micro level to enterprise react applications using Redux and Redux Saga for state management.

Component Based Development

At 42Square, we have experience with both the class based and functional component based development.

In past and in brownfield applications we have experience with most of the component development practices and patterns including higher order components and render props. These sorts of wrapper hell patterns are not recommended in React greenfield applications from React v16.8 and above.

Nowadays, we follow the practice of Hooks based components where the stateful logic is extracted and used across the components without altering the component hierarchy.

Content

Enterprise Level State Management

At 42Square, we have experience with both the class based and functional component based development. In past and in brownfield applications we have experience with most of the component development practices and patterns including higher order components and render props. These sorts of wrapper hell patterns are not recommended in React greenfield applications from React v16.8 and above. Nowadays, we follow the practice of Hooks based components where the stateful logic is extracted and used across the components without altering the component hierarchy.

Content