codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

The Front-End Performance Checklist speeds up your web developments

David Dias
codeburst
Published in
16 min readJul 22, 2018

--

You know Flash?… Well, now you can say “I’m the new Flash Dev 😅”

Table of Contents

Introduction

How to use?

Performance tools

References

HTML

<!-- Before HTML5 -->
<script type="text/javascript">
// Javascript code
</script>
<!-- Today -->
<script>
// Javascript code
</script>
<!-- Not recommended -->
<script src="jquery.js"></script>
<script src="foo.js"></script>
<link rel="stylesheet" href="foo.css"/>
<!-- Recommended -->
<link rel="stylesheet" href="foo.css"/>
<script src="jquery.js"></script>
<script src="foo.js"></script>

CSS

<!-- Not recommended -->
<link rel="stylesheet" href="="fonts.css"></link>
<link rel="stylesheet" href="components.js"></link>

<!-- Recommended -->
<link src="combined.js"></link>
<link rel="preload" href="global.min.css" as="style" onload="this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="global.min.css"></noscript>

Fonts

<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

Images

JavaScript

<!-- Defer Attribute -->
<script defer src="foo.js">
<!-- Async Attribute -->
<script async src="foo.js">

Server

Author

License

Thank you for reading!

Hit the clap 👏 button!

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by David Dias

Software Engineer with a passion for Front-End & UX / UI • Life hacker who ♥ coding, meditation and solving digital and human problems

Responses (2)