SlideShare une entreprise Scribd logo
1  sur  55
Télécharger pour lire hors ligne
Frontend on steroids!
FRONT-END ON STEROIDS
Tom Janssens at WordCamp Antwerp 2016
Tom Janssens
The web platform is my box of LEGOs.
tom.janssens.me - @JanssensTom
I'm a Belgian web developer
and co-founder of Timble.
Front-end on Steroids WordCamp Antwerp 2016
Now what ?!
Front-end on Steroids WordCamp Antwerp 2016
Mobile First
https://flic.kr/p/gTH5oL
Front-end on Steroids WordCamp Antwerp 2016
goo.gl/9AFDSi
goo.gl/9AFDSi
Front-end on Steroids WordCamp Antwerp 2016
DON’T:
@media (max-width: ...) {
…
}
DO:
@media (min-width: ...) {
…
}
Front-end on Steroids WordCamp Antwerp 2016
goo.gl/9AFDSi
goo.gl/9AFDSi
Front-end on Steroids WordCamp Antwerp 2016
goo.gl/9AFDSi
Front-end on Steroids WordCamp Antwerp 2016
Future-proof
Front-end on Steroids WordCamp Antwerp 2016
www.lokalepolitie.be/leuven
Front-end on Steroids WordCamp Antwerp 2016
Device Mode in Chrome
Front-end on Steroids WordCamp Antwerp 2016
bradfrost.com/demo/ish/
Front-end on Steroids WordCamp Antwerp 2016
Progressive Enhancement
https://flic.kr/p/4bcAb6
Front-end on Steroids WordCamp Antwerp 2016
Wait… what ?!
Front-end on Steroids WordCamp Antwerp 2016
No JavaScript for 1 in 93 people
https://gds.blog.gov.uk/2013/10/21/how-many-people-are-missing-out-on-javascript-enhancement/
Front-end on Steroids WordCamp Antwerp 2016
Javascript enabled
Front-end on Steroids WordCamp Antwerp 2016
Javascript disabled
Front-end on Steroids WordCamp Antwerp 2016
Javascript enabled
Front-end on Steroids WordCamp Antwerp 2016
Javascript disabled
Front-end on Steroids WordCamp Antwerp 2016
styleguide.sc5.io
Front-end on Steroids WordCamp Antwerp 2016
https://flic.kr/p/2SvT9M
Front-end on Steroids WordCamp Antwerp 2016
https://flic.kr/p/2SvT9M
Front-end on Steroids WordCamp Antwerp 2016
Open Graph
https://flic.kr/p/2SvT9M
Front-end on Steroids WordCamp Antwerp 2016
ogp.me
Front-end on Steroids WordCamp Antwerp 2016
Front-end on Steroids WordCamp Antwerp 2016
dev.twitter.com/cards/types/summary
Front-end on Steroids WordCamp Antwerp 2016
Linked Data
https://www.ted.com/talks/tim_berners_lee_on_the_next_web
Front-end on Steroids WordCamp Antwerp 2016
schema.org
Microdata
Front-end on Steroids WordCamp Antwerp 2016
schema.org
JSON Linked Data
Front-end on Steroids WordCamp Antwerp 2016
webmasters.googleblog.com/2016/05/introducing-rich-cards.html
Google introduced rich cards
Front-end on Steroids WordCamp Antwerp 2016
search.google.com/structured-data/testing-tool
Structured Data Testing Tool
Front-end on Steroids WordCamp Antwerp 2016
Sass
Syntactically Awesome Style Sheets
Front-end on Steroids WordCamp Antwerp 2016
BEM
Block Element Modifier
Front-end on Steroids WordCamp Antwerp 2016
www.smashingmagazine.com/2012/04/16/a-new-front-end-methodology-bem
Front-end on Steroids WordCamp Antwerp 2016
Atomic Design
Front-end on Steroids WordCamp Antwerp 2016
bradfrost.com/blog/post/atomic-web-design
Front-end on Steroids WordCamp Antwerp 2016
Grunt
Front-end on Steroids WordCamp Antwerp 2016
$ npm install grunt-sass --save-dev
Front-end on Steroids WordCamp Antwerp 2016
{
"name": "internet-platform",
"devDependencies": {
"grunt-browser-sync": "latest",
"grunt": "^0.4.5",
"grunt-contrib-watch": "~0.6.1",
"grunt-sass": "^0.17.0",
"load-grunt-tasks": "^0.6.0"
}
}
PACKAGE.JSON
Front-end on Steroids WordCamp Antwerp 2016
$ npm install
Front-end on Steroids WordCamp Antwerp 2016
// Sass task
sass: {
dist: {
files: {
'css/style.css': 'css/style.scss'
}
}
}
SASS TASK
Front-end on Steroids WordCamp Antwerp 2016
// Watch task
watch: {
sass: {
files: 'css/*.scss',
tasks: ['sass']
}
WATCH TASK
Front-end on Steroids WordCamp Antwerp 2016
module.exports = function(grunt) {
// Load all grunt plugins
require('load-grunt-tasks')(grunt);
// Tasks
grunt.initConfig({
sass: { … }
watch: { … }
});
grunt.registerTask('default', ['watch']);
};
GRUNTFILE.JS
Front-end on Steroids WordCamp Antwerp 2016
$ grunt
Front-end on Steroids WordCamp Antwerp 2016
Yellow Lab Tools
Front-end on Steroids WordCamp Antwerp 2016
www.vlaanderen.be
Front-end on Steroids WordCamp Antwerp 2016
www.vlaanderen.be
Front-end on Steroids WordCamp Antwerp 2016
www.vlaanderen.be
Front-end on Steroids WordCamp Antwerp 2016
www.vlaanderen.be
Front-end on Steroids WordCamp Antwerp 2016
BrowserStack
Front-end on Steroids WordCamp Antwerp 2016
ngrok
Front-end on Steroids WordCamp Antwerp 2016
One last thing ...
Front-end on Steroids WordCamp Antwerp 2016
BrowserSync
Front-end on Steroids WordCamp Antwerp 2016
Demo
Let’s build a device lab
Disclaimer: live demos are a recipe for disaster
Front-end on Steroids WordCamp Antwerp 2016
We build things for the web
www.timble.net
Thank you! Questions?
tom.janssens.me - @JanssensTom

Contenu connexe

Similaire à Front-end on Steroids

Similaire à Front-end on Steroids (20)

Big data groningen
Big data groningenBig data groningen
Big data groningen
 
Big data groningen
Big data groningenBig data groningen
Big data groningen
 
Metasepi team meeting #16: Safety on ATS language + MCU
Metasepi team meeting #16: Safety on ATS language + MCUMetasepi team meeting #16: Safety on ATS language + MCU
Metasepi team meeting #16: Safety on ATS language + MCU
 
PWA + AMP: The Future of E-Commerce? Max Prin - BrightonSEO - Sept. 2018
PWA + AMP: The Future of E-Commerce? Max Prin - BrightonSEO - Sept. 2018PWA + AMP: The Future of E-Commerce? Max Prin - BrightonSEO - Sept. 2018
PWA + AMP: The Future of E-Commerce? Max Prin - BrightonSEO - Sept. 2018
 
Prototyping: Helping to take away the suck
Prototyping: Helping to take away the suckPrototyping: Helping to take away the suck
Prototyping: Helping to take away the suck
 
Pre-Con Ed: There has to be a Better Way to Fast Test Coverage!
Pre-Con Ed: There has to be a Better Way to Fast Test Coverage!Pre-Con Ed: There has to be a Better Way to Fast Test Coverage!
Pre-Con Ed: There has to be a Better Way to Fast Test Coverage!
 
Lean methodology sfd szeged 2011
Lean methodology   sfd szeged 2011Lean methodology   sfd szeged 2011
Lean methodology sfd szeged 2011
 
Victor Charpenay | Standardized Semantics for an Open Web of Things
Victor Charpenay | Standardized Semantics for an Open Web of ThingsVictor Charpenay | Standardized Semantics for an Open Web of Things
Victor Charpenay | Standardized Semantics for an Open Web of Things
 
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
 
Juraj vysvader - Python developer's CV
Juraj vysvader - Python developer's CVJuraj vysvader - Python developer's CV
Juraj vysvader - Python developer's CV
 
Amped for AMP at Pubcon Las Vegas 2016
Amped for AMP at Pubcon Las Vegas 2016Amped for AMP at Pubcon Las Vegas 2016
Amped for AMP at Pubcon Las Vegas 2016
 
The WordPress Industry Survey 2016
The WordPress Industry Survey 2016The WordPress Industry Survey 2016
The WordPress Industry Survey 2016
 
Fiducia & GAD IT AG: From Fraud Detection to Big Data Platform: Bringing Hado...
Fiducia & GAD IT AG: From Fraud Detection to Big Data Platform: Bringing Hado...Fiducia & GAD IT AG: From Fraud Detection to Big Data Platform: Bringing Hado...
Fiducia & GAD IT AG: From Fraud Detection to Big Data Platform: Bringing Hado...
 
How To Have Fun in Open Source - CMS Garden Unconference 2019
How To Have Fun in Open Source - CMS Garden Unconference 2019How To Have Fun in Open Source - CMS Garden Unconference 2019
How To Have Fun in Open Source - CMS Garden Unconference 2019
 
[DevDay2018] Javascript on the Rise - By Trang Tran, Co-founder & Manager at ...
[DevDay2018] Javascript on the Rise - By Trang Tran, Co-founder & Manager at ...[DevDay2018] Javascript on the Rise - By Trang Tran, Co-founder & Manager at ...
[DevDay2018] Javascript on the Rise - By Trang Tran, Co-founder & Manager at ...
 
Migrating Web SDK from JS to TS
Migrating Web SDK from JS to TSMigrating Web SDK from JS to TS
Migrating Web SDK from JS to TS
 
Using XR Experiences on Your WordPress
Using XR Experiences on Your WordPress   Using XR Experiences on Your WordPress
Using XR Experiences on Your WordPress
 
Open Source at AWS: Code, Contributions, Collaboration, and Communication
Open Source at AWS: Code, Contributions, Collaboration, and CommunicationOpen Source at AWS: Code, Contributions, Collaboration, and Communication
Open Source at AWS: Code, Contributions, Collaboration, and Communication
 
Guidance, Code and Education: ScalaCenter and the Scala Community, Heather Mi...
Guidance, Code and Education: ScalaCenter and the Scala Community, Heather Mi...Guidance, Code and Education: ScalaCenter and the Scala Community, Heather Mi...
Guidance, Code and Education: ScalaCenter and the Scala Community, Heather Mi...
 
short talk at Kean
short talk at Keanshort talk at Kean
short talk at Kean
 

Dernier

Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
HyderabadDolls
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
wpkuukw
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
awasv46j
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
gajnagarg
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
wpkuukw
 
poliovirus-190801072449. pptx
poliovirus-190801072449.            pptxpoliovirus-190801072449.            pptx
poliovirus-190801072449. pptx
ssuser0ad194
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
mark11275
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
eeanqy
 
Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
balqisyamutia
 
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
eqaqen
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
instagramfab782445
 
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
sriharipichandi
 

Dernier (20)

Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahim
 
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptx
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
 
poliovirus-190801072449. pptx
poliovirus-190801072449.            pptxpoliovirus-190801072449.            pptx
poliovirus-190801072449. pptx
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime PondicherryPondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
 
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
 
The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024
 
Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
 
BLOCK CHAIN PROJECT block chain project
BLOCK CHAIN  PROJECT block chain projectBLOCK CHAIN  PROJECT block chain project
BLOCK CHAIN PROJECT block chain project
 
How to Turn a Picture Into a Line Drawing in Photoshop
How to Turn a Picture Into a Line Drawing in PhotoshopHow to Turn a Picture Into a Line Drawing in Photoshop
How to Turn a Picture Into a Line Drawing in Photoshop
 
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
 
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
 

Front-end on Steroids