Skip to content

Commit 3e253e2

Browse files
committed
Initial thoughts on Vue and why I started with it
1 parent d73a5b1 commit 3e253e2

File tree

3 files changed

+32
-15
lines changed

3 files changed

+32
-15
lines changed

.gitignore

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1-
# Compiled class file
21
*.class
32

4-
# Log file
5-
*.log
6-
7-
# BlueJ files
8-
*.ctxt
9-
10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
12-
133
# Package Files #
144
*.jar
155
*.war
166
*.ear
17-
*.zip
18-
*.tar.gz
19-
*.rar
207

21-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
22-
hs_err_pid*
8+
# Eclipse #
9+
.settings
10+
.project
11+
.classpath
12+
.studio
13+
target
14+
15+
# Apple #
16+
.DS_Store
17+
18+
# Intellij #
19+
.idea
20+
*.iml
21+
*.log
22+
23+
# logback
24+
logback.out.xml

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
11
# spring-boot-vuejs
22
Example project showing how to build a Spring Boot App providing a GUI with Vue.js
3+
4+
5+
## In Search of a new Webfrontend-Framework after 2 Years of absence...
6+
7+
Well I´am not a Frontend developer. I´am more like playing around with Spring Boot, Web- & Microservices & Docker, automating things with Ansible and Docker, Scaling things with Spring Cloud, Docker Compose and Traefik... And the only GUIs I´am building are the "new JS framework in town"-app every two years... :) So the last one was Angular 1 - and it felt, as it was a good choice! I loved the coding experience and after a day of training, I felt able to write awesome Frontends...
8+
9+
But now we´re 2 years later and I heard from afar, that there was a complete rewrite of Angular (2), a new kid in town from Facebook (React) and lot´s of ES201x stuff and dependency managers like bower and Co. So I´am now in the new 2-year-cycle of trying to cope up again - and so glad I found this article: https://medium.com/reverdev/why-we-moved-from-angular-2-to-vue-js-and-why-we-didnt-choose-react-ef807d9f4163
10+
11+
Key points are:
12+
* Angular 2 isn´t the way to go, if you know version 1 (complete re-write, only with Typescript, loss of many of 1´s advantages, Angular 4 is coming)
13+
* React (facebook´ish problems (licence), need to choose btw. Redux & MObX, harder learning curve, slower coding speed)
14+
15+
![comparison-angular-react-vuejs](https://github.com/jonashackt/spring-boot-vuejs/blob/master/comparison-angular-react-vuejs)
16+
17+
So I think, it could be a good idea to invest a day or so into Vue.js. Let´s have a look here!

comparison-angular-react-vuejs.png

68.2 KB
Loading

0 commit comments

Comments
 (0)