Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015

Matt Raible
Matt RaibleWeb Developer, Java Champion, and Developer Advocate at Okta
Photos by

Comparing Hot JavaScript Frameworks
Matt Raible • http://raibledesigns.com
Blogger on raibledesigns.com
Web Developer and UI Architect
Montanan, Father, Husband, Skier,
Mountain Biker, Whitewater Rafter
Open Source Connoisseur
Who is Matt Raible?
Bus Lover
What about You?
How long have you been programming in
JavaScript?

Do you remember IE6?

Are you a Java Developer?

Do you run and test your apps in Chrome?

What JavaScript Frameworks do you use?
So where’s the Spring MVC in all of this?
What’s the best framework
in JavaScript Land?
Let’s look at the last time I talked about
web frameworks… Feb 2014
Early 2013
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Too many web frameworks?
Remember SOFEA?
SOFEA became a Reality
SOFEA Performance Issues
traditional web frameworks are still relevant
traditional web frameworks are still relevant
server-side rendering is still relevant
server-side rendering is still relevant
server-side rendering is still relevant
The Paradox of Choice
Good Decisions Involve
1. Figure out your goal or goals
2. Evaluate the importance of each goal
3. Array the options
4. Evaluate how likely each of the options is to meet your goals
5. Pick the winning option
6. Modify goals
Maximizer vs. Satisficer
‣ maximizer - tries to make best possible choice
‣ satisficer - tries to find first suitable choice
(Photo: Tori Cat at Flickr)
There’s only three choices here!
The Real Problem
‣ 2006: Choose based on the type of app you’re developing
‣ 2010: Choose based on 20 different criteria (the Matrix)
‣ 2013: Narrowed it to 6
- Community / Support
- HTML5
- REST
- Mobile
- Performance
- Page Speed
How to Constrain Choices
2015: Why would you limit your choices?
Learn as much as you can, everyday.
Why should you care?
http://searchengineland.com/tested-googlebot-crawls-javascript-heres-learned-220157
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
“If I have seen further than others,
it is by standing upon the
shoulders of giants.”

Sir Isaac Newton
www.hello-startup.net
twitter.com/brikis98
Node vs. Play Framework
The Framework Scorecard
Angular Ember React
1. Learn
2. Develop
3. Test
4. Secure
5. Build
6. Deploy
7. Debug
8. Scale
9. Maintain
10. Share
For each feature, we’ll discuss…
1 Much worse than most frameworks

5 About the same as most frameworks

10 Much better than most frameworks
The History of AngularJS
Started by Miško Hevery in 2009

GWT = 3 developers, 6 months

AngularJS = 1 developer, 3 weeks

Learn more:

https://www.youtube.com/watch?v=X0VsStcCCM8
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
The History of Ember.js
SproutCore was initially created in 2007 by
Sproutit

In June 2010, the creator of SproutCore, Charles
Jolley, left Apple to start Strobe

Strobe acquired by Facebook in November 2011

In December 2011, the SproutCore 2.0 framework
was renamed to Ember.js

Founded by Yehuda Katz
The History of React
React was created by Jordan Walke

Inspired by XHP, an HTML components
framework for PHP

Open sourced in May 2013

Within one year, had large sites

Khan Academy, New York Times, Airbnb 

+ Facebook and Instagram
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Angular Ember React
1. Learn
2. Develop
3. Test
4. Secure
5. Build
Angular: Hello World
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Learning Angular: API Docs
Learning Angular: Videos
Learning Angular: Videos
Learning Angular: Books
Learning Angular: ng-book
www.ng-book.com

Book and source: $39

Book, source and videos: $79

Team License: $299
Learning Angular: Stack Overflow
Angular Ember React
1. Learn 10
2. Develop
3. Test
4. Secure
5. Build
Angular Ember React
1. Learn 10
2. Develop
3. Test
4. Secure
5. Build
Ember: Hello World
http://guides.emberjs.com/v2.0.0/getting-started/
npm install -g ember-cli
npm install -g phantomjs2
ember new my-new-app
cd my-new-app
ember server
Ember: Hello World
http://gilesbowkett.blogspot.com/2013/04/a-hello-world-in-emberjs.html
<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.0.2/
ember.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.0.2/
ember-template-compiler.js"></script>
<script>
var App = Ember.Application.create();
</script>
</head>
<body>
<script type="text/x-handlebars" data-template-name='index'>
<p>Hello Ember!</p>
</script>
</body>
</html>
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
<div>
<label>Name:</label>
{{input type="text" value=name placeholder="Enter your name"}}
</div>
<div class="text">
<h3>My name is {{name}} and I want to learn Ember!</h3>
</div>
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Learning Ember: API Docs
Learning Ember: Guides
Learning Ember: Videos
No lessons on Egghead.io

www.emberscreencasts.com 

emberwatch.com

Talks, Screencasts, Podcasts,

Tutorials, Books, Cookbook
Learning Ember: Books
Learning Ember: Stack Overflow
Angular Ember React
1. Learn 10 6
2. Develop
3. Test
4. Secure
5. Build
React: Hello World
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<script src="build/react.js"></script>
<script src="build/JSXTransformer.js"></script>
</head>
<body>
<div id="example"></div>
<script type="text/jsx">
React.render(
<h1>Hello, world!</h1>,
document.getElementById('example')
);
</script>
</body>
</html>
React: Hello World
React: Hello {name} without JSX
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Learning React: API Docs
Learning React: Videos
Learning React: Videos
Learning React: Videos
https://egghead.io/series/react-fundamentals
Learning React: Books
Learning React: Books (Coming Soon)
Learning React: Stack Overflow
Angular Ember React
1. Learn 10 6 8
2. Develop
3. Test
4. Secure
5. Build
Interesting: Stack Overflow Top Questions
Angular Ember React
1. Learn 10 6 8
2. Develop
3. Test
4. Secure
5. Build
Routing
RESTful routing

Extracts query and
path params

ngRoute by default

De-facto: ui-router
Nested Routes
RESTful routing

Extracts query and
path params

Uses conventions

Nested routes

Wildcards

No routing, only V

Director used in
TodoMVC example

React Router 2x
more popular

Inspired by Ember
Routing with ngRoute
angular.module('todomvc', ['ngRoute'])
.config(function ($routeProvider) {
'use strict';
var routeConfig = {
controller: 'TodoCtrl',
templateUrl: 'todomvc-index.html',
resolve: {
store: function (todoStorage) {
// Get the correct module (API or localStorage)
}
}
};
$routeProvider
.when('/', routeConfig)
.when('/:status', routeConfig)
.otherwise({
redirectTo: '/'
});
});
Routing with Ember
(function () {
'use strict';
Todos.Router.map(function () {
this.resource('todos', { path: '/' }, function () {
this.route('active');
this.route('completed');
});
});
Todos.TodosRoute = Ember.Route.extend({
model: function () {
return this.store.find('todo');
}
});
Todos.TodosIndexRoute = Todos.TodosRoute.extend({
templateName: 'todo-list',
controllerName: 'todos-list'
});
// Todos.TodosActiveRoute & Todos.TodosCompletedRoute
})();
Routing with Director
var TodoApp = React.createClass({
getInitialState: function () {
return {
nowShowing: app.ALL_TODOS,
editing: null
};
},
componentDidMount: function () {
var setState = this.setState;
var router = Router({
'/': setState.bind(this, {nowShowing: app.ALL_TODOS}),
'/active': setState.bind(this, {nowShowing: app.ACTIVE_TODOS}),
'/completed': setState.bind(this, {nowShowing: app.COMPLETED_TODOS})
});
router.init('/');
},
// lots of event handlers and render()
});
Templates
HTML5 Templates

Angular-specific
elements and
attributes

Directives, EL,
filters and forms
Handlebars

HTML-like DSL

Defined in <script>
tags

Helpers

JSX or JS

JSX: Similar to E4X

Namespaced
Components

JavaScript
Expressions
Templates
<body ng-app="todomvc">
<ng-view />
<script type="text/ng-template" id="todomvc-index.html">
<section id="todoapp">
<header id="header">
<h1>todos</h1>
<form id="todo-form" ng-submit="addTodo()">
<input id="new-todo" placeholder="What needs to be done?"
ng-model="newTodo" ng-disabled="saving" autofocus>
</form>
</header>
<section id="main" ng-show="todos.length" ng-cloak>
<input id="toggle-all" type="checkbox" ng-model="allChecked"
ng-click="markAll(allChecked)">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list">
<li ng-repeat="todo in todos | filter:statusFilter track by $index"
ng-class="{completed: todo.completed, editing: todo == editedTodo}">
Templates
<script type="text/x-handlebars" data-template-name="todo-list">
{{#if length}}
<section id="main">
{{#if canToggle}}
{{input type="checkbox" id="toggle-all" checked=allTodos.allAreDone}}
{{/if}}
<ul id="todo-list">
{{#each}}
<li {{bind-attr class="isCompleted:completed isEditing:editing"}}>
{{#if isEditing}}
{{todo-input type="text" class="edit" value=bufferedTitle
focus-out="doneEditing" insert-newline="doneEditing"
escape-press="cancelEditing"}}
{{else}}
{{input type="checkbox" class="toggle" checked=isCompleted}}
<label {{action "editTodo" on="doubleClick"}}>{{title}}</label>
<button {{action "removeTodo"}} class="destroy"></button>
{{/if}}
</li>
{{/each}}
Templates
<script type="text/x-handlebars" data-template-name="todo-list">
{{#if length}}
<section id="main">
{{#if canToggle}}
{{input type="checkbox" id="toggle-all" checked=allTodos.allAreDone}}
{{/if}}
<ul id="todo-list">
{{#each}}
<li {{bind-attr class="isCompleted:completed isEditing:editing"}}>
{{#if isEditing}}
{{todo-input type="text" class="edit" value=bufferedTitle
focus-out="doneEditing" insert-newline="doneEditing"
escape-press="cancelEditing"}}
{{else}}
{{input type="checkbox" class="toggle" checked=isCompleted}}
<label {{action "editTodo" on="doubleClick"}}>{{title}}</label>
<button {{action "removeTodo"}} class="destroy"></button>
{{/if}}
</li>
{{/each}}
Templates
if (todos.length) {
main = (
<section className="main">
<input
className="toggle-all"
type="checkbox"
onChange={this.toggleAll}
checked={activeTodoCount === 0}
/>
<ul className="todo-list">
{todoItems}
</ul>
</section>
);
}
Templates
if (todos.length) {
main = (...);
}
return (
<div>
<header className="header">
<h1>todos</h1>
<input
ref="newField"
className="new-todo"
placeholder="What needs to be done?"
onKeyDown={this.handleNewTodoKeyDown}
autoFocus={true}
/>
</header>
{main}
{footer}
</div>
);
i18n
i18n/l10n for date,
number and
currency filters

angular-translate
No built-in i18n

i18n-js
ember-i18n
No built-in i18n

react-intl
Format.js

Components,
MixIns, Relative
Times
i18n
i18n/l10n for date,
number and
currency filters

angular-translate
No built-in i18n

i18n-js
ember-i18n
ember-intl
No built-in i18n

react-intl
Format.js

Components,
MixIns, Relative
Times
Form Binding and Validation
2-way data-binding

with ngModel
Validation services
provided
CSS classes for
invalid, required,
touched, dirty, etc.
1 or 2-way binding

DS.Errors
No UI Validation

ember-validations
Ember EasyForm
Ember Forms
Form Components
and Events

propTypes in dev

react-validation-
mixin
formsy-react
LOC in examples/angularjs
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
Javascript 11 2715 15432 12005
CSS 2 75 5 439
HTML 1 1 0 74
JSON 1 0 0 16
-------------------------------------------------------------------------------
SUM: 15 2791 15437 12534
-------------------------------------------------------------------------------
LOC in examples/emberjs
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
Javascript 14 14574 26513 43031
CSS 2 75 5 439
HTML 1 0 0 88
JSON 1 0 0 11
-------------------------------------------------------------------------------
SUM: 18 14649 26518 43569
-------------------------------------------------------------------------------
LOC in examples/react
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
Javascript 6 4783 9359 24530
CSS 2 75 5 439
HTML 1 2 3 26
JSON 1 0 0 9
-------------------------------------------------------------------------------
SUM: 10 4860 9367 25004
-------------------------------------------------------------------------------
LOC in TodoMVC
0
12500
25000
37500
50000
Angular Ember React
Files in TodoMVC
0
4
7
11
14
Angular Ember React
Files in TodoMVC
0
4
7
11
14
Angular Ember React
Starter Kits
150K 77K 225K
Angular Ember React
1. Learn 10 6 8
2. Develop 9 6 5
3. Test
4. Secure
5. Build
Angular Ember React
1. Learn 10 6 8
2. Develop 10 8 9
3. Test
4. Secure
5. Build
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test
4. Secure
5. Build
-1
Experience Bias
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test
4. Secure
5. Build
R.addons.TestUtils

Jest

Shallow Rendering

Mocha + Chai +
JSDOM

react-testing
Testing
Karma

Jasmine

angular-mocks

Protractor
QUnit

Testem

ember test
Acceptance Tests

ember generate
acceptance-test
<name>
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure
5. Build
What tool do you use to test JavaScript?
http://ashleynolan.co.uk/blog/frontend-tooling-survey-2015-results
0%
15%
30%
45%
60%
Don'tuse
one
M
ocha
Jasm
ine
Q
U
nit
Tape
Jest
Karm
a
Intern
O
ther
2%0.77%0.92%1.54%2.16%3.54%
15.56%16.64%
56.86%
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure
5. Build
Security
CSRF
XSS
CSP
Auth
Advisories
Security
CSRF
XSS
CSP
Auth
Advisories
CSRF
XSS
CSP
Auth
Advisories
Security
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Node Advisories
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build
https://code.google.com/p/mustache-security/
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build
What task runner do you prefer using?
http://ashleynolan.co.uk/blog/frontend-tooling-survey-2015-results
Other

4.00%NPM

3.50%
Don't use one

16.20%
Broccoli

0.60%
Grunt

26.70%
Gulp

49.00%
Building
Grunt / Gulp

Browserify

Webpack

Bower and NPM
Ember CLI

Broccoli-powered
asset pipeline

Addon System

Bower and NPM
React Starter Kit

react-tools

Browserify

Webpack
Building
Grunt / Gulp

Browserify

Webpack

Bower and NPM
Ember CLI

Broccoli-powered
asset pipeline

Addon System

Bower and NPM
React Starter Kit

react-tools

Babel

Browserify

Webpack
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build 9 10 9
Angular Ember React
6. Deploy
7. Debug
8. Scale
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug
8. Scale
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug
8. Scale
9. Maintain
10. Share
Debugging
Debug from the
DOM

$log service

Chrome and
debugger
Angular Batarang
LOG_TRANSITIONS

LOG_*

Handlebar Helpers

Ember Inspector
React Dev Tools
Pretty Diff
react-debug
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale
9. Maintain
10. Share
TodoMVC Benchmark
https://github.com/evancz/todomvc-perf-comparison/
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 9
9. Maintain
10. Share
apple.com/music
What about Isomorphic JavaScript?
What about Isomorphic JavaScript?
What about Universal JavaScript?
Server-Side Rendering Support
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 9
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9-1 7 9
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 8 7+1 9
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 8 8 9+2
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 8 8 10
9. Maintain
10. Share
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 8 8 10
9. Maintain
10. Share
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
var foo = ["10", "10", "10"];
foo.map(parseInt);
// Returns [ 10, NaN, 2 ]
[] + [] // ""
[] + {} // {}
{} + [] // 0
{} + {} // NaN
var a = {};
a[[]] = 2;
alert(a[""]); // alerts 2
alert(Array(16).join("wat" - 1) + " Batman!");
https://www.destroyallsoftware.com/talks/wat
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share
JS Error Monitoring
Track:js 

New Relic Browser

Raygun

Bugsnag

JS Monitor

Qbaka
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share
GitHub: ContributorsContributors
0
350
700
1050
1400
Angular Ember React
September 9, 2015
GitHub: WatchersWatchers
0
1000
2000
3000
4000
Angular Ember React
September 9, 2015
GitHub: StarsStars
0
12500
25000
37500
50000
Angular Ember React
September 9, 2015
GitHub: ForksForks
0
5000
10000
15000
20000
Angular Ember React
September 9, 2015
GitHub: Pull Requests
PullRequests
0
100
200
300
400
Angular Ember React
September 9, 2015
Stack Overflow
119K 16.5K 5K
Google Group: Members
18K 2K
Addons, according to npmjs.org
4085 52992249
Commercial Support
Who’s Using in Production
madewithangular 

Google Trends
and Analytics

Amazon

Forbes

MSNBC
builtwithember.io 

Apple Music

emberjs.com/ember-
users 

Yahoo

Square
Candidates: LinkedIn
0
50000
100000
150000
200000
Angular Ember React
Jobs: LinkedIn
0
1000
2000
3000
4000
Angular Ember React
Jobs: Career Builder
0
150
300
450
600
Angular Ember React
Indeed Trends
Angular Ember React
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share 10 10 10
The Framework Scorecard
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build 9 10 9
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share 10 10 10
The Framework Scorecard
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build 9 10 9
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share 10 10 10
Total 82 83 79
The Framework Scorecard
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build 9 10 9
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share 10 10 10
Total 82 83 79
The Framework Scorecard
Angular Ember React
1. Learn 10 6 8
2. Develop 9 8 9
3. Test 8 9 8
4. Secure 7 8 4
5. Build 9 10 9
6. Deploy 10 10 10
7. Debug 7 10 7
8. Scale 9 7 10
9. Maintain 3 5 4
10. Share 10 10 10
Total 82 83 79
These are just my opinions!
And you know what they say about opinions!
Discuss: when should you use x?
Discuss: when should you not use x?
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015
Action!
Don’t be afraid to try new things

Learn JavaScript

Try one of these frameworks

Form your own opinions

Or just wait a few months…
Contact Information

http://raibledesigns.com

@mraible

Presentations

http://slideshare.net/mraible

Code

http://github.com/mraible
Questions?
1 of 170

Recommended

Avoiding Common Pitfalls in Ember.js by
Avoiding Common Pitfalls in Ember.jsAvoiding Common Pitfalls in Ember.js
Avoiding Common Pitfalls in Ember.jsAlex Speller
22.9K views42 slides
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Angular Summit 2015 by
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Angular Summit 2015Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Angular Summit 2015
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Angular Summit 2015Matt Raible
38.7K views40 slides
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx France 2016 by
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx France 2016Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx France 2016
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx France 2016Matt Raible
5.5K views39 slides
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Rich Web Experie... by
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Rich Web Experie...Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Rich Web Experie...
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Rich Web Experie...Matt Raible
3.4K views41 slides
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx UK 2016 by
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx UK 2016Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx UK 2016
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx UK 2016Matt Raible
3.7K views38 slides
Developing, Testing and Scaling with Apache Camel - UberConf 2015 by
Developing, Testing and Scaling with Apache Camel - UberConf 2015Developing, Testing and Scaling with Apache Camel - UberConf 2015
Developing, Testing and Scaling with Apache Camel - UberConf 2015Matt Raible
26K views56 slides

More Related Content

What's hot

Testing Mobile JavaScript by
Testing Mobile JavaScriptTesting Mobile JavaScript
Testing Mobile JavaScriptjeresig
215.2K views49 slides
Play Framework vs Grails Smackdown - JavaOne 2013 by
Play Framework vs Grails Smackdown - JavaOne 2013Play Framework vs Grails Smackdown - JavaOne 2013
Play Framework vs Grails Smackdown - JavaOne 2013Matt Raible
16.4K views80 slides
Get Hip with JHipster - Colorado Springs OSS Meetup April 2016 by
Get Hip with JHipster - Colorado Springs OSS Meetup April 2016Get Hip with JHipster - Colorado Springs OSS Meetup April 2016
Get Hip with JHipster - Colorado Springs OSS Meetup April 2016Matt Raible
2K views51 slides
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016 by
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016Matt Raible
3.8K views39 slides
On Selecting JavaScript Frameworks (Women Who Code 10/15) by
On Selecting JavaScript Frameworks (Women Who Code 10/15)On Selecting JavaScript Frameworks (Women Who Code 10/15)
On Selecting JavaScript Frameworks (Women Who Code 10/15)Zoe Landon
900 views53 slides
jQuery Proven Performance Tips & Tricks by
jQuery Proven Performance Tips & TricksjQuery Proven Performance Tips & Tricks
jQuery Proven Performance Tips & TricksAddy Osmani
175.6K views87 slides

What's hot(20)

Testing Mobile JavaScript by jeresig
Testing Mobile JavaScriptTesting Mobile JavaScript
Testing Mobile JavaScript
jeresig215.2K views
Play Framework vs Grails Smackdown - JavaOne 2013 by Matt Raible
Play Framework vs Grails Smackdown - JavaOne 2013Play Framework vs Grails Smackdown - JavaOne 2013
Play Framework vs Grails Smackdown - JavaOne 2013
Matt Raible16.4K views
Get Hip with JHipster - Colorado Springs OSS Meetup April 2016 by Matt Raible
Get Hip with JHipster - Colorado Springs OSS Meetup April 2016Get Hip with JHipster - Colorado Springs OSS Meetup April 2016
Get Hip with JHipster - Colorado Springs OSS Meetup April 2016
Matt Raible2K views
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016 by Matt Raible
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - GeekOut 2016
Matt Raible3.8K views
On Selecting JavaScript Frameworks (Women Who Code 10/15) by Zoe Landon
On Selecting JavaScript Frameworks (Women Who Code 10/15)On Selecting JavaScript Frameworks (Women Who Code 10/15)
On Selecting JavaScript Frameworks (Women Who Code 10/15)
Zoe Landon900 views
jQuery Proven Performance Tips & Tricks by Addy Osmani
jQuery Proven Performance Tips & TricksjQuery Proven Performance Tips & Tricks
jQuery Proven Performance Tips & Tricks
Addy Osmani175.6K views
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx 2015 by Matt Raible
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx 2015Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx 2015
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - Devoxx 2015
Matt Raible6.7K views
Choosing the best JavaScript framework/library/toolkit by Hristo Chakarov
Choosing the best JavaScript framework/library/toolkitChoosing the best JavaScript framework/library/toolkit
Choosing the best JavaScript framework/library/toolkit
Hristo Chakarov2.5K views
The Modern Java Web Developer Bootcamp - Devoxx 2013 by Matt Raible
The Modern Java Web Developer Bootcamp - Devoxx 2013The Modern Java Web Developer Bootcamp - Devoxx 2013
The Modern Java Web Developer Bootcamp - Devoxx 2013
Matt Raible28.3K views
How to Develop a Rich, Native-quality User Experience for Mobile Using Web St... by David Kaneda
How to Develop a Rich, Native-quality User Experience for Mobile Using Web St...How to Develop a Rich, Native-quality User Experience for Mobile Using Web St...
How to Develop a Rich, Native-quality User Experience for Mobile Using Web St...
David Kaneda2.3K views
GitBucket: The perfect Github clone by Scala by takezoe
GitBucket: The perfect Github clone by ScalaGitBucket: The perfect Github clone by Scala
GitBucket: The perfect Github clone by Scala
takezoe26.7K views
High Performance JavaScript - jQuery Conference SF Bay Area 2010 by Nicholas Zakas
High Performance JavaScript - jQuery Conference SF Bay Area 2010High Performance JavaScript - jQuery Conference SF Bay Area 2010
High Performance JavaScript - jQuery Conference SF Bay Area 2010
Nicholas Zakas47.7K views
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - DOSUG February 2016 by Matt Raible
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - DOSUG February 2016Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - DOSUG February 2016
Get Hip with JHipster: Spring Boot + AngularJS + Bootstrap - DOSUG February 2016
Matt Raible109.9K views
How to make Ajax work for you by Simon Willison
How to make Ajax work for youHow to make Ajax work for you
How to make Ajax work for you
Simon Willison44.2K views
Testing Angular 2 Applications - HTML5 Denver 2016 by Matt Raible
Testing Angular 2 Applications - HTML5 Denver 2016Testing Angular 2 Applications - HTML5 Denver 2016
Testing Angular 2 Applications - HTML5 Denver 2016
Matt Raible1.3K views
Play vs Grails Smackdown - Devoxx France 2013 by Matt Raible
Play vs Grails Smackdown - Devoxx France 2013Play vs Grails Smackdown - Devoxx France 2013
Play vs Grails Smackdown - Devoxx France 2013
Matt Raible6.2K views
Web application development using Play Framework (with Java) by Saeed Zarinfam
Web application development using Play Framework (with Java)Web application development using Play Framework (with Java)
Web application development using Play Framework (with Java)
Saeed Zarinfam3.8K views

Viewers also liked

AngularJS + React by
AngularJS + ReactAngularJS + React
AngularJS + Reactjustvamp
1.5K views32 slides
Angular vs React: Building modern SharePoint interfaces with SPFx by
Angular vs React: Building modern SharePoint interfaces with SPFxAngular vs React: Building modern SharePoint interfaces with SPFx
Angular vs React: Building modern SharePoint interfaces with SPFxDimcho Tsanov
1.4K views26 slides
AngularJS vs React JS vs Node JS: Which is Best For Web Development ? by
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?MarkupBox
6.8K views23 slides
Intake structures by RAHUL by
Intake structures by RAHULIntake structures by RAHUL
Intake structures by RAHULRahulpratap Singh
41.9K views25 slides
Disinfection by
DisinfectionDisinfection
DisinfectionAnup Ghimire
10.1K views35 slides
Collection and Distribution of Water: Intakes by
Collection and Distribution of Water: IntakesCollection and Distribution of Water: Intakes
Collection and Distribution of Water: IntakesDivine Abaloyan
21.3K views35 slides

Viewers also liked(17)

AngularJS + React by justvamp
AngularJS + ReactAngularJS + React
AngularJS + React
justvamp1.5K views
Angular vs React: Building modern SharePoint interfaces with SPFx by Dimcho Tsanov
Angular vs React: Building modern SharePoint interfaces with SPFxAngular vs React: Building modern SharePoint interfaces with SPFx
Angular vs React: Building modern SharePoint interfaces with SPFx
Dimcho Tsanov1.4K views
AngularJS vs React JS vs Node JS: Which is Best For Web Development ? by MarkupBox
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
MarkupBox6.8K views
Collection and Distribution of Water: Intakes by Divine Abaloyan
Collection and Distribution of Water: IntakesCollection and Distribution of Water: Intakes
Collection and Distribution of Water: Intakes
Divine Abaloyan21.3K views
Water sources by nazish66
Water sources Water sources
Water sources
nazish6614.4K views
Intake structures by Sachin PatiL
Intake structures Intake structures
Intake structures
Sachin PatiL53.4K views
Filtration and disinfection of water by Vinod Kumar Nehta
Filtration and disinfection of waterFiltration and disinfection of water
Filtration and disinfection of water
Vinod Kumar Nehta32.2K views
Disinfection of water by Ashwani Kumar
Disinfection of waterDisinfection of water
Disinfection of water
Ashwani Kumar36.1K views
28737268 waste-water-treatment-ppt by abhiiii4558
28737268 waste-water-treatment-ppt28737268 waste-water-treatment-ppt
28737268 waste-water-treatment-ppt
abhiiii4558174.4K views
Collection and Conveyance of Water by GAURAV. H .TANDON
Collection and Conveyance of WaterCollection and Conveyance of Water
Collection and Conveyance of Water
GAURAV. H .TANDON46.7K views
water treatment slides by Anand Keshri
water treatment slideswater treatment slides
water treatment slides
Anand Keshri172.3K views

Similar to Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015

Front End Development for Back End Developers - vJUG24 2017 by
Front End Development for Back End Developers - vJUG24 2017Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017Matt Raible
731 views104 slides
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby by
Consegi 2010 - Dicas de Desenvolvimento Web com RubyConsegi 2010 - Dicas de Desenvolvimento Web com Ruby
Consegi 2010 - Dicas de Desenvolvimento Web com RubyFabio Akita
1.3K views160 slides
SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct... by
SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct...SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct...
SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct...Sébastien Levert
78 views31 slides
Denver emberjs-sept-2015 by
Denver emberjs-sept-2015Denver emberjs-sept-2015
Denver emberjs-sept-2015Ron White
234 views56 slides
JRuby, Ruby, Rails and You on the Cloud by
JRuby, Ruby, Rails and You on the CloudJRuby, Ruby, Rails and You on the Cloud
JRuby, Ruby, Rails and You on the CloudHiro Asari
1.3K views42 slides
Front End Development for Back End Java Developers - Jfokus 2020 by
Front End Development for Back End Java Developers - Jfokus 2020Front End Development for Back End Java Developers - Jfokus 2020
Front End Development for Back End Java Developers - Jfokus 2020Matt Raible
181 views112 slides

Similar to Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015(20)

Front End Development for Back End Developers - vJUG24 2017 by Matt Raible
Front End Development for Back End Developers - vJUG24 2017Front End Development for Back End Developers - vJUG24 2017
Front End Development for Back End Developers - vJUG24 2017
Matt Raible731 views
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby by Fabio Akita
Consegi 2010 - Dicas de Desenvolvimento Web com RubyConsegi 2010 - Dicas de Desenvolvimento Web com Ruby
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby
Fabio Akita1.3K views
SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct... by Sébastien Levert
SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct...SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct...
SharePoint Saturday Lisbon 2017 - SharePoint Framework, Angular & Azure Funct...
Denver emberjs-sept-2015 by Ron White
Denver emberjs-sept-2015Denver emberjs-sept-2015
Denver emberjs-sept-2015
Ron White234 views
JRuby, Ruby, Rails and You on the Cloud by Hiro Asari
JRuby, Ruby, Rails and You on the CloudJRuby, Ruby, Rails and You on the Cloud
JRuby, Ruby, Rails and You on the Cloud
Hiro Asari1.3K views
Front End Development for Back End Java Developers - Jfokus 2020 by Matt Raible
Front End Development for Back End Java Developers - Jfokus 2020Front End Development for Back End Java Developers - Jfokus 2020
Front End Development for Back End Java Developers - Jfokus 2020
Matt Raible181 views
Fisl 11 - Dicas de Desenvolvimento Web com Ruby by Fabio Akita
Fisl 11 - Dicas de Desenvolvimento Web com RubyFisl 11 - Dicas de Desenvolvimento Web com Ruby
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
Fabio Akita877 views
Getting Started with Rails on GlassFish (Hands-on Lab) - Spark IT 2010 by Arun Gupta
Getting Started with Rails on GlassFish (Hands-on Lab) - Spark IT 2010Getting Started with Rails on GlassFish (Hands-on Lab) - Spark IT 2010
Getting Started with Rails on GlassFish (Hands-on Lab) - Spark IT 2010
Arun Gupta1.7K views
SharePoint Framework, Angular and Azure Functions by Sébastien Levert
SharePoint Framework, Angular and Azure FunctionsSharePoint Framework, Angular and Azure Functions
SharePoint Framework, Angular and Azure Functions
Sébastien Levert386 views
JavaScript Dependencies, Modules & Browserify by Johan Nilsson
JavaScript Dependencies, Modules & BrowserifyJavaScript Dependencies, Modules & Browserify
JavaScript Dependencies, Modules & Browserify
Johan Nilsson8.4K views
Front End Development for Back End Developers - UberConf 2017 by Matt Raible
Front End Development for Back End Developers - UberConf 2017Front End Development for Back End Developers - UberConf 2017
Front End Development for Back End Developers - UberConf 2017
Matt Raible1.4K views
Testable client side_mvc_apps_in_javascript by Timothy Oxley
Testable client side_mvc_apps_in_javascriptTestable client side_mvc_apps_in_javascript
Testable client side_mvc_apps_in_javascript
Timothy Oxley1.2K views
Get Ahead with HTML5 on Moible by markuskobler
Get Ahead with HTML5 on MoibleGet Ahead with HTML5 on Moible
Get Ahead with HTML5 on Moible
markuskobler442 views
Selenium & PHPUnit made easy with Steward (Berlin, April 2017) by Ondřej Machulda
Selenium & PHPUnit made easy with Steward (Berlin, April 2017)Selenium & PHPUnit made easy with Steward (Berlin, April 2017)
Selenium & PHPUnit made easy with Steward (Berlin, April 2017)
Ondřej Machulda1.4K views
Testing Angular Applications - Jfokus 2017 by Matt Raible
Testing Angular Applications - Jfokus 2017Testing Angular Applications - Jfokus 2017
Testing Angular Applications - Jfokus 2017
Matt Raible1.6K views
Puppeteer - A web scraping & UI Testing Tool by Miki Lombardi
Puppeteer - A web scraping & UI Testing ToolPuppeteer - A web scraping & UI Testing Tool
Puppeteer - A web scraping & UI Testing Tool
Miki Lombardi346 views
Testing Angular 2 Applications - Rich Web 2016 by Matt Raible
Testing Angular 2 Applications - Rich Web 2016Testing Angular 2 Applications - Rich Web 2016
Testing Angular 2 Applications - Rich Web 2016
Matt Raible3.5K views
Advanced Tips & Tricks for using Angular JS by Simon Guest
Advanced Tips & Tricks for using Angular JSAdvanced Tips & Tricks for using Angular JS
Advanced Tips & Tricks for using Angular JS
Simon Guest19.4K views
Intro To Django by Udi Bauman
Intro To DjangoIntro To Django
Intro To Django
Udi Bauman2.6K views
Rails Presentation (Anton Dmitriyev) by True-Vision
Rails Presentation (Anton Dmitriyev)Rails Presentation (Anton Dmitriyev)
Rails Presentation (Anton Dmitriyev)
True-Vision209 views

More from Matt Raible

Micro Frontends for Java Microservices - Belfast JUG 2022 by
Micro Frontends for Java Microservices - Belfast JUG 2022Micro Frontends for Java Microservices - Belfast JUG 2022
Micro Frontends for Java Microservices - Belfast JUG 2022Matt Raible
26 views57 slides
Micro Frontends for Java Microservices - Dublin JUG 2022 by
Micro Frontends for Java Microservices - Dublin JUG 2022Micro Frontends for Java Microservices - Dublin JUG 2022
Micro Frontends for Java Microservices - Dublin JUG 2022Matt Raible
19 views56 slides
Micro Frontends for Java Microservices - Cork JUG 2022 by
Micro Frontends for Java Microservices - Cork JUG 2022Micro Frontends for Java Microservices - Cork JUG 2022
Micro Frontends for Java Microservices - Cork JUG 2022Matt Raible
7 views56 slides
Comparing Native Java REST API Frameworks - Seattle JUG 2022 by
Comparing Native Java REST API Frameworks - Seattle JUG 2022Comparing Native Java REST API Frameworks - Seattle JUG 2022
Comparing Native Java REST API Frameworks - Seattle JUG 2022Matt Raible
48 views87 slides
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022 by
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022Matt Raible
105 views42 slides
Comparing Native Java REST API Frameworks - Devoxx France 2022 by
Comparing Native Java REST API Frameworks - Devoxx France 2022Comparing Native Java REST API Frameworks - Devoxx France 2022
Comparing Native Java REST API Frameworks - Devoxx France 2022Matt Raible
130 views86 slides

More from Matt Raible(20)

Micro Frontends for Java Microservices - Belfast JUG 2022 by Matt Raible
Micro Frontends for Java Microservices - Belfast JUG 2022Micro Frontends for Java Microservices - Belfast JUG 2022
Micro Frontends for Java Microservices - Belfast JUG 2022
Matt Raible26 views
Micro Frontends for Java Microservices - Dublin JUG 2022 by Matt Raible
Micro Frontends for Java Microservices - Dublin JUG 2022Micro Frontends for Java Microservices - Dublin JUG 2022
Micro Frontends for Java Microservices - Dublin JUG 2022
Matt Raible19 views
Micro Frontends for Java Microservices - Cork JUG 2022 by Matt Raible
Micro Frontends for Java Microservices - Cork JUG 2022Micro Frontends for Java Microservices - Cork JUG 2022
Micro Frontends for Java Microservices - Cork JUG 2022
Matt Raible7 views
Comparing Native Java REST API Frameworks - Seattle JUG 2022 by Matt Raible
Comparing Native Java REST API Frameworks - Seattle JUG 2022Comparing Native Java REST API Frameworks - Seattle JUG 2022
Comparing Native Java REST API Frameworks - Seattle JUG 2022
Matt Raible48 views
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022 by Matt Raible
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022
Reactive Java Microservices with Spring Boot and JHipster - Spring I/O 2022
Matt Raible105 views
Comparing Native Java REST API Frameworks - Devoxx France 2022 by Matt Raible
Comparing Native Java REST API Frameworks - Devoxx France 2022Comparing Native Java REST API Frameworks - Devoxx France 2022
Comparing Native Java REST API Frameworks - Devoxx France 2022
Matt Raible130 views
Lock That Sh*t Down! Auth Security Patterns for Apps, APIs, and Infra - Devne... by Matt Raible
Lock That Sh*t Down! Auth Security Patterns for Apps, APIs, and Infra - Devne...Lock That Sh*t Down! Auth Security Patterns for Apps, APIs, and Infra - Devne...
Lock That Sh*t Down! Auth Security Patterns for Apps, APIs, and Infra - Devne...
Matt Raible98 views
Java REST API Framework Comparison - PWX 2021 by Matt Raible
Java REST API Framework Comparison - PWX 2021Java REST API Framework Comparison - PWX 2021
Java REST API Framework Comparison - PWX 2021
Matt Raible148 views
Web App Security for Java Developers - PWX 2021 by Matt Raible
Web App Security for Java Developers - PWX 2021Web App Security for Java Developers - PWX 2021
Web App Security for Java Developers - PWX 2021
Matt Raible135 views
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ... by Matt Raible
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
Matt Raible187 views
Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Joker... by Matt Raible
Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Joker...Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Joker...
Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Joker...
Matt Raible140 views
Web App Security for Java Developers - UberConf 2021 by Matt Raible
Web App Security for Java Developers - UberConf 2021Web App Security for Java Developers - UberConf 2021
Web App Security for Java Developers - UberConf 2021
Matt Raible152 views
Java REST API Framework Comparison - UberConf 2021 by Matt Raible
Java REST API Framework Comparison - UberConf 2021Java REST API Framework Comparison - UberConf 2021
Java REST API Framework Comparison - UberConf 2021
Matt Raible150 views
Native Java with Spring Boot and JHipster - SF JUG 2021 by Matt Raible
Native Java with Spring Boot and JHipster - SF JUG 2021Native Java with Spring Boot and JHipster - SF JUG 2021
Native Java with Spring Boot and JHipster - SF JUG 2021
Matt Raible69 views
Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Sprin... by Matt Raible
Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Sprin...Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Sprin...
Lock That Shit Down! Auth Security Patterns for Apps, APIs, and Infra - Sprin...
Matt Raible182 views
Reactive Java Microservices with Spring Boot and JHipster - Denver JUG 2021 by Matt Raible
Reactive Java Microservices with Spring Boot and JHipster - Denver JUG 2021Reactive Java Microservices with Spring Boot and JHipster - Denver JUG 2021
Reactive Java Microservices with Spring Boot and JHipster - Denver JUG 2021
Matt Raible182 views
Get Hip with JHipster - Colorado Springs Open Source User Group 2021 by Matt Raible
Get Hip with JHipster - Colorado Springs Open Source User Group 2021Get Hip with JHipster - Colorado Springs Open Source User Group 2021
Get Hip with JHipster - Colorado Springs Open Source User Group 2021
Matt Raible150 views
JHipster and Okta - JHipster Virtual Meetup December 2020 by Matt Raible
JHipster and Okta - JHipster Virtual Meetup December 2020JHipster and Okta - JHipster Virtual Meetup December 2020
JHipster and Okta - JHipster Virtual Meetup December 2020
Matt Raible226 views
Java REST API Comparison: Micronaut, Quarkus, and Spring Boot - jconf.dev 2020 by Matt Raible
Java REST API Comparison: Micronaut, Quarkus, and Spring Boot - jconf.dev 2020Java REST API Comparison: Micronaut, Quarkus, and Spring Boot - jconf.dev 2020
Java REST API Comparison: Micronaut, Quarkus, and Spring Boot - jconf.dev 2020
Matt Raible433 views
Security Patterns for Microservice Architectures - SpringOne 2020 by Matt Raible
Security Patterns for Microservice Architectures - SpringOne 2020Security Patterns for Microservice Architectures - SpringOne 2020
Security Patterns for Microservice Architectures - SpringOne 2020
Matt Raible329 views

Recently uploaded

TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc
11 views29 slides
"Running students' code in isolation. The hard way", Yurii Holiuk by
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk Fwdays
17 views34 slides
Data Integrity for Banking and Financial Services by
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial ServicesPrecisely
25 views26 slides
Case Study Copenhagen Energy and Business Central.pdf by
Case Study Copenhagen Energy and Business Central.pdfCase Study Copenhagen Energy and Business Central.pdf
Case Study Copenhagen Energy and Business Central.pdfAitana
16 views3 slides
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf by
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdfDr. Jimmy Schwarzkopf
20 views29 slides
SUPPLIER SOURCING.pptx by
SUPPLIER SOURCING.pptxSUPPLIER SOURCING.pptx
SUPPLIER SOURCING.pptxangelicacueva6
16 views1 slide

Recently uploaded(20)

TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc11 views
"Running students' code in isolation. The hard way", Yurii Holiuk by Fwdays
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk
Fwdays17 views
Data Integrity for Banking and Financial Services by Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely25 views
Case Study Copenhagen Energy and Business Central.pdf by Aitana
Case Study Copenhagen Energy and Business Central.pdfCase Study Copenhagen Energy and Business Central.pdf
Case Study Copenhagen Energy and Business Central.pdf
Aitana16 views
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf by Dr. Jimmy Schwarzkopf
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf
HTTP headers that make your website go faster - devs.gent November 2023 by Thijs Feryn
HTTP headers that make your website go faster - devs.gent November 2023HTTP headers that make your website go faster - devs.gent November 2023
HTTP headers that make your website go faster - devs.gent November 2023
Thijs Feryn22 views
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson92 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb14 views
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
"Surviving highload with Node.js", Andrii Shumada by Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays22 views
Unit 1_Lecture 2_Physical Design of IoT.pdf by StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec12 views
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe by Simone Puorto
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
Simone Puorto12 views

Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - SpringOne 2GX 2015