The Front-End Checklist
做个记录,摘自Front-End Performance Checklist
HTML
- Minified HTML:
The HTML code is minified, comments, white spaces and new lines are removed from production files.
- Remove unnecessary comments:
Ensure that comments are removed from your pages.
- Remove unnecessary attributes:
Type attributes like
type="text/javascript"ortype="text/css"are not required anymore and should be removed. - Place CSS tags always before JavaScript tags:
Ensure that your CSS is always loaded before having JavaScript code.
- Minimize the number of iframes:
Use iframes only if you don't have any other technical possibility. Try to avoid as much as you can iframes.
CSS
- Minification:
All CSS files are minified, comments, white spaces and new lines are removed from production files.
- Concatenation:
CSS files are concatenated in a single file (Not always valid for HTTP/2).(合并css,减少http请求,http2不必)
- Non-blocking:
CSS files need to be non-blocking to prevent the DOM from taking time to load.(css必须是非阻塞的)
How:You need to add therelattribute with thepreloadvalue and addas="style"on the<link>element<link rel="preload" href="a.css" as="style" onload="this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="a.css"></noscript> - Length of CSS classes:
The length of your classes can have an (slight) impact on your HTML and CSS files (eventually).
- Unused CSS:
Remove unused CSS selectors.
- CSS Critical:
The CSS critical (or "above the fold") collects all the CSS used to render the visible portion of the page. It is embedded before your principal CSS call and between
<style></style>in a single line (minified if possible).
取出首屏渲染所必须的 critical CSS,以内联的方式写在 <style></style> 之中,然后异步加载剩余的 CSS 样式,这相当于离线加载剩余部分的 CSS 样式,然后在后台将其注入到页面中。 - Embedded or inline CSS:
Avoid using embed or inline CSS inside your
<body>(Not valid for HTTP/2) - Analyse stylesheets complexity:
Analyzing your stylesheets can help you to flag issues, redundancies and duplicate CSS selectors.
分析样式表,去除冗余重复的代码
Fonts
- Webfont formats:
You are using WOFF2 on your web project or application.
- Use
preconnectto load your fonts faster:<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- Webfont size:
Webfont sizes don't exceed 300kb (all variants included)
- Prevent Flash or Invisible Text:
Avoid transparent text until the Webfont is loaded
Images
- Images optimization:
Your images are optimized, compressed without direct impact to the end user.
- Images format:
Choose your image format appropriately.
- Use vector image vs raster/bitmap:
Prefer using vector image rather than bitmap images (when possible).
矢量图像(SVG)往往比图像小,SVG的响应速度和比例都很好 - Images dimensions:
Set
widthandheightattributes on<img>if the final rendered image size is known. - Avoid using Base64 images:
You could eventually convert tiny images to base64 but it's actually not the best practice.
- Lazy loading:
Images are lazyloaded (A noscript fallback is always provided).
- Responsive images:
Ensure to serve images that are close to your display size.(
srcset和picture了解一下)
JavaScript
- JS Minification:
All JavaScript files are minified, comments, white spaces and new lines are removed from production files (still valid if using HTTP/2).
- No JavaScript inside:
(Only valid for website) Avoid having multiple JavaScript codes embedded in the middle of your body. Regroup your JavaScript code inside external files or eventually in the
<head>or at the end of your page (before</body>). - Non-blocking JavaScript:
JavaScript files are loaded asynchronously using
asyncor deferred usingdeferattribute. - Optimized and updated JS libraries:
All JavaScript libraries used in your project are necessary (prefer Vanilla JavaScript for simple functionalities), updated to their latest version and don't overwhelm your JavaScript with unnecessary methods.
- Check dependencies size limit:
Ensure to use wisely external libraries, most of the time, you can use a lighter library for a same functionality.(比如dayjs替代了momentjs)
- JavaScript Profiling:
Check for performance problems in your JavaScript files (and CSS too).
Server
- Page weight < 1500 KB (ideally < 500 KB):
Reduce the size of your page + resources as much as you can.
- Page load times < 3 seconds:
Reduce as much as possible your page load times to quickly deliver your content to your users.
- Time To First Byte < 1.3 seconds:
Reduce as much as you can the time your browser waits before receiving data.
- Cookie size:
If you are using cookies be sure each cookie doesn't exceed 4096 bytes(4kb) and your domain name doesn't have more than 20 cookies.
- Minimizing HTTP requests:
Always ensure that every file requested are essential for your website or application.
- Use a CDN to deliver your assets:
Use a CDN to deliver faster your content over the world.
- Serve files from the same protocol:
Avoid having your website using HTTPS and serve files coming from source using HTTP.
- Serve reachable files:
Avoid requesting unreachable files (404).
- Set HTTP cache headers properly:
Set HTTP headers to avoid expensive number of roundtrips between your browser and the server.
- GZIP / Brotli compression is enabled:
The Front-End Checklist的更多相关文章
- Security Checklist (路由器安全checklist)
Security Checklist Website by Michael Horowitz Home | Introduction | Router Bugs | Security Che ...
- Java Web项目报错java.lang.NullPointerException at org.apache.jsp.front.index_jsp._jspInit(index_jsp.java:30)
环境:myeclipse+tomcat6+jdk6 今天搭建了一个Java Web项目,访问index.jsp时报如下错误: 严重: Servlet.service() for servlet jsp ...
- Front End Developer Questions 前端开发人员问题(二)CSS 后续
问题来源:http://markyun.github.io/2015/Front-end-Developer-Questions/ 31.视差滚动效果,如何给每页做不同的动画?(回到顶部,向下滑动要再 ...
- 企业管理咨询Interview Checklist
企业管理咨询Interview Checklist 一. 企业战略 1. 您对公司所处行业的看法如何? 2. 请您介绍一下公司的发展历程,主要业务开展状况及核心竞争力.关键成功因素有哪些? 3. 在您 ...
- I finally made sense of front end build tools. You can, too.
来源于:https://medium.freecodecamp.com/making-sense-of-front-end-build-tools-3a1b3a87043b#.nvnd2vsd8 ...
- H3C汇聚层交换机认证在线人数展示系统之CheckList和燃尽图(16/04/06-16/04/13)
一.CheckList(核查表) 序号 事件 计划完成时间 实际完成时间 未延迟 未完成 完成 1 登录口令加密以及解密 16/04/06 16/04/06 Y 2 表的创建和IP以及口令 ...
- [front]有效开展一个前端项目
今天的前端如果没有用到 npm,效率是比较低的:所以要从使用的工具来讲. 1. 一切都依赖于 nodejs: 下载一个 linux 的源码包就可以开始安装了. $ wget https://nodej ...
- [software development] 需求分析checklist
[software development] 需求分析checklist // */ // ]]> [software development] 需求分析checklist Table of ...
- Queue的push和front操作
#include <queue> #include <cstdlib> using namespace std; int main(){ queue<int> qu ...
- 自己动手做Web框架—MVC+Front Controller
在我前面一篇博文<逃脱Asp.Net MVC框架的枷锁,使用Razor视图引擎>发表之后,很多人关心,脱离了之后怎么办?那么这可以说是它的续篇了. 同时,这也是eLiteWeb开源软件的一 ...
随机推荐
- css 文本超出容器长度后自动省略的方法!
我们在给用户显示文本内容的时候,往往需要避免文本内容超出容器宽度,防止换行溢出,小弟在网上找了下发现网上的实现仅仅只是实现了用 ...省略了的功能! 而并没有获取光标提示的功能,所有小弟就结合网上的代 ...
- nginx安装,反向代理配置
1.centos 版本 下载最新稳定版 https://www.nginx.com/resources/wiki/start/topics/tutorials/install/# 2.执行语句: ./ ...
- php PDO遇到的坑
<?php $dbConn = new PDO( "mysql:host=localhost;dbname=adtuu",'root','root', array( // 强 ...
- JavaScript: apply 方法 详解(转)——非常好
转载自 http://www.cnblogs.com/KeenLeung/archive/2012/11/19/2778229.html 我在一开始看到javascript的函数apply和call ...
- Intro to Python for Data Science Learning 7 - 2D NumPy Arrays
2D NumPy Arrays from:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-4- ...
- Git本地仓库与远程github同步的时候提示fatal: remote origin already exists 错误解决办法
Git本地仓库与远程github同步的时候提示fatal: remote origin already exists 错误解决办法 1.git在本地的电脑创建了仓库,要远程同步github的仓库.使用 ...
- 音响理论基础入门:Gain(增益)
谈到放大器就必须先了解增益:一个小的信号Level(电平)经过放大电路成为大的信号Level ,也就是说由小变大之间的差异就叫增益,也叫放大率,反过来的叫衰减率.在音响系统内,一般以信号源的输入电平决 ...
- jar与war 包解压
JAR包是Java中所特有一种压缩文档,其实大家就可以把它理解为.zip包.当然也是有区别的,JAR包中有一个META-INF\MANIFEST.MF文件,当你找成JAR包时,它会自动生成.JAR包是 ...
- .xz文件解压及linux常见压缩
最近下载mysql8.0的压缩包,发现压缩包的格式为xz tar czvf 或 tar xzvf 的压缩格式很好解压,使用tar命令即可,z是针对 gzip,j是针对 bzip2. 但xz的压缩文件就 ...
- 20145106 java实验二
1)复数类ComplexNumber的属性 m_dRealPart: 实部,代表复数的实数部分 m_dImaginPart: 虚部,代表复数的虚数部分 public class ComplexNumb ...