Frontend frameworks for desktop and responsive on other devices can be categorized in 5 main types:AngularReactJSVueJSClassic (html, css, jquery, thymeleaf, asp.net)Flutter ...
Showing posts with label FE React. Show all posts
Showing posts with label FE React. Show all posts
Saturday, August 21, 2021
Saturday, August 21, 2021
The competition among frontend frameworks
Monday, July 6, 2020
Monday, July 06, 2020
Add Redux lifestyle into Angular's Reactive State Management
If you are java developer and you are not good at design and frontend skill but you want to develop a java web application using microservices style, Angular is the best choice as front-end framework for you. Angular is like java Wicket framework. Both use real html DOM in markup file so that It is easy to incorporate with cut-css/html frontend developer to make a target ui page.
Redux is...
Sunday, September 1, 2019
Sunday, September 01, 2019
Getting started with React Native and Redux
This article is a simple step-by-step of how to start a project with React Native and Redux.
Source Code (Branch init)
Create-react-native-app
Following the path of its excellent web brother, I recommend the use of the create-react-native-app
to bootstrap your new project. This one configures all the build tools
necessary to create a React Native app, and gives you some excellent Expo integrations.
First...
Sunday, September 01, 2019
Spring Boot + React Redux and MySQL CRUD example
This article will build React Redux Http Client & Spring Boot Server example that uses Spring Data JPA to interact with MySQL database and React as a front-end technology to make request and receive response.
Technologies
– Java 1.8
– Maven 3.3.9
– Spring Tool Suite 3.9.0.RELEASE
– Spring Boot 2.0.1.RELEASE
– Webpack 4.4.1
– React 16.3.0
– Redux 3.7.2
– React Redux...
Sunday, August 25, 2019
Sunday, August 25, 2019
Devstack download: migrating from JSF to ReactJS
At Bandwidth, our UI front end was originally written using JSF (java
server faces). This made sense at the time because we had a lot of Java
developers and it was easier for them to work with. As time moved on
and we expanded our team we got more front-end developers on board. They
were pushing for a more modern front end stack that will help improve
efficiency for front-end development. That...
Friday, March 1, 2019
Friday, March 01, 2019
Announcing the Ionic React Beta
How to Get Started with React & Ionic?
Getting started is quite simple. Begin first with create-react-app,
because we want you to use Ionic with React in the most familiar way. We
also recommend using TypeScript in your app, something we recently wrote about on our blog
if you need tips. While this is not required, we mention it because
Ionic React ships with TypeScript type definitions,...
Tuesday, January 1, 2019
Tuesday, January 01, 2019
Angular 7 vs React
Angular is a fully-fledged MVC framework and React is simply a JavaScript Library.
Here’s what Angular provides directly out-of-the-box:
-Templates, based on an extended version of HTML
-XSS protection
-Dependency injection
-Ajax requests by @angular/HTTP
-Routing, provided by @angular/router
-Component CSS encapsulation
-Utilities for unit-testing components
-@angular/forms for building forms
-Write...
Saturday, September 8, 2018
Saturday, September 08, 2018
React.js and Spring Data REST - Basic Features
Spring Data REST provides backend functionality
React has sophisticated features to build an easy-to-grok UI.
Spring Data REST provides a fast way to build hypermedia-powered repositories.
React is Facebook’s solution to efficient, fast, and easy-to-use views in the land of JavaScript.
...
Thursday, August 9, 2018
Thursday, August 09, 2018
MVC vs Flux
Flux is the application architecture that Facebook uses for building
client-side web applications. It complements React's composable view
components by utilizing a unidirectional data flow. It's more of a
pattern rather than a formal framework, and you can start using Flux
immediately without a lot of new code.
Flux applications have three major parts: the dispatcher, the stores,
and the views...
Sunday, January 7, 2018
Sunday, January 07, 2018
Beginning React JS
What Is React?
React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called “components”. React has a few different kinds of components, but we should start with React.Component subclasses
React components implement a render() method that takes input data and returns...