参考框架 系统 基准_带有基准的前端框架的实际比较

参考框架 系统 基准

by Jacek Schae

由Jacek Schae

带有基准的前端框架的实际比较 (A Real-World Comparison of Front-End Frameworks with Benchmarks)

UPDATE: There is a newer version of this article

更新:本文有较新的版本

A Real-World Comparison of Front-End Frameworks with Benchmarks (2018 update)This article is a refresh of A Real-World Comparison of Front-End Frameworks with Benchmarks from December 2017.medium.freecodecamp.org

带有基准的前端框架的实际比较(2018年更新) 本文是2017年12月以来的带有基准的前端框架的实际比较的更新 。medium.freecodecamp.org

Over the last couple of years we have seen an explosion of front-end frameworks. Each one of them is more than capable of building great web applications. So how do you compare and decide which one to use for your next project?

在过去的几年中,我们看到了前端框架的爆炸式增长。 他们每个人都具有构建出色的Web应用程序的能力。 那么,您如何比较并决定在下一个项目中使用哪个?

First of all, to make a meaningful comparison we need a few things:

首先,要进行有意义的比较,我们需要注意以下几点:

  1. Real World App - Something more than a “todo”. Usually “todos” don’t convey knowledge & perspective to actually build real applications.

    真实世界的应用程序 -不仅仅是“待办事项”。 通常,“待办事项”不会传达知识和观点来实际构建实际的应用程序。

  2. Standardized - A project that conforms to certain rules. Hosted at the same place, provides a back-end API, static markup, styles, and spec.

    标准化 -符合某些规则的项目。 托管在同一位置,提供了后端API,静态标记,样式和规范。

  3. Written by an expert - A consistent, real world project, that ideally an expert in that technology would have built. This is true, at least most of the time (see below).

    由专家撰写 -一个一致的,真实世界的项目,理想情况下,该技术的专家应会建立。 至少在大多数情况下都是如此(请参阅下文)。

So how do we get such a project? The good news is that Eric Simons already created a RealWorld project. It’s a clone of the Medium blogging platform. Each implementation of this project uses the same HTML structure, CSS, and API spec, but a different library/framework. When it comes to expert knowledge it’s true most of the time. I wrote an implementation in ClojureScript and re-frame and I don’t consider myself an expert. In my defense an expert reviewed my code - thanks Daniel Compton.

那么我们如何获得这样的项目呢? 好消息是Eric Simons已经创建了一个RealWorld项目。 它是Medium博客平台的克隆。 该项目的每个实现都使用相同HTML结构,CSS和API规范,但使用不同的库/框架。 当涉及到专家知识时,大多数时候都是如此。 我用ClojureScript编写了一个实现并重新设计框架 ,但我不认为自己是专家。 在我的辩护中,一位专家检查了我的代码-谢谢Daniel Compton 。

Now we have a baseline spec, we need a standard set of tests/metrics to compare them.

现在我们有了基准规范,我们需要一组标准的测试/指标来进行比较。

  1. Performance. How long does this App take to show content and become usable?

    性能。 此应用需要多长时间才能显示内容并可用?

  2. Size. How big is the App? We will only compare the size of the compiled JavaScript. The CSS is common to all variants, and is downloaded from a CDN (Content Delivery Network). The HTML is common to all variants too. All technologies compile or transpile to JavaScript, thus we only size this file.

    尺寸。 该应用程序有多大? 我们将仅比较已编译JavaScript的大小。 CSS对于所有变体都是通用的,并且是从CDN(内容交付网络)下载的。 HTML对于所有变体也是通用的。 所有技术都可以编译或转换为JavaScript,因此我们仅调整该文件的大小。

  3. Lines of Code. How many lines of code did the author need to create RealWorld app based on spec? To be fair some apps have a bit more bells and whistles, but it should not have a significant impact. The only folder we quantify is src/ in each app.

    代码行。 作者需要多少行代码才能根据规范创建RealWorld应用程序? 公平地讲,某些应用程序有很多麻烦,但应该不会产生重大影响。 我们量化的唯一文件夹是每个应用程序中的src /。

At the time of writing (Dec 2017) the RealWorld project is available in the following frameworks:

在撰写本文时(2017年12月),RealWorld项目在以下框架中可用:

  • React / Redux

    React / Redux

  • Elm

    榆树

  • Angular 4+

    角4+

  • Angular 1.5+

    角度1.5+

  • React / MobX

    React / MobX

  • Crizmas MVC

    Crizmas MVC

  • CLSJ Keechma

    CLSJ Keechma

  • AppRun

    AppRun

  • CLJS re-frame (This is the one I did. It’s not yet listed at RealWorld Project).

    CLJS重新构图 (这是我所做的。它尚未在RealWorld Project中列出)。

指标1:效果 (Metric 1: Performance)

First meaningful paint test with Lighthouse Audit that ships with Chrome.

Chrome随附的Lighthouse Lighthouse进行了 首次有意义的油漆测试。

The sooner you paint, the better the experience for the person who is using the App. Lighthouse also measures First interactive, but this was almost identical for most apps.

涂漆越早,使用该应用程序的人的体验就越好。 Lighthouse还可以测量First Interactive ,但这对于大多数应用程序几乎相同。

指标2:大小 (Metric 2: Size)

Transfer size is from the Chrome network tab. GZIPed response headers plus the response body, as delivered by the server.

传输大小来自Chrome网络标签。 服务器提供的GZIPed响应标头以及响应正文。

Smaller file = faster download and less to parse.

较小的文件=下载速度更快,而且解析次数更少。

This depends on the size of your framework, any extra dependencies you added, and how well your build tool can make a small bundle.

这取决于框架的大小,所添加的任何其他依赖项以及您的构建工具可以制作小捆绑包的能力。

指标3:代码行 (Metric 3: Lines of Code)

Using cloc we count lines of code in each repo’s src folder. Blank and comment lines are not part of this calculation.Why is this meaningful?

使用cloc,我们计算每个仓库的src文件夹中的代码行数。 空白和注释行不是此计算的一部分。为什么这有意义?

If debugging is the process of removing software bugs, then programming must be the process of putting them in - Edsger Dijkstra
如果调试是消除软件错误的过程,则编程必须是将其放入程序的过程-Edsger Dijkstra

The fewer lines of code you have the smaller probability of an error and smaller code base to maintain.

代码行越少,出错的可能性就越小,要维护的代码库也就越少。

结论 (Conclusion)

性能 (Performance)

This is a RealWorld Comparison and not a benchmark in a vacuum. Tests were performed out of Europe (Switzerland). All Apps were hosted on Github. Values may differ for you, which is fine. Tests were performed couple of times for each app, then averaged, and rounded. Results were pretty linear when comparing throughout the day. Most of the libraries/frameworks are in the range of excellent and good. You won’t see a lot of difference when it comes to performance.

这是真实世界的比较,而不是基准测试。 测试是在欧洲(瑞士)以外进行的。 所有应用都托管在Github上。 值可能对您有所不同,这很好。 对每个应用程序进行了两次测试,然后取平均值并四舍五入。 全天比较时,结果呈线性关系。 大多数库/框架都在优秀和优秀范围内。 在性能方面,您不会看到太多差异。

尺寸 (Size)

The bundle size for each App is always the same. We are comparing similar implementations and look at how bundle sizes differ. AppRun is insane! I looked a couple of times because I couldn’t believe it. Elm is doing an amazing job when it comes to bundle size and especially when you look at lines of code.

每个应用程序的捆绑包大小始终相同。 我们正在比较类似的实现,并查看包大小如何不同。 AppRun太疯狂了! 我看了几次,因为我简直不敢相信。 在包大小方面,尤其是当您查看代码行时,Elm做得非常出色。

代码行 (Lines of code)

This has the biggest impact on you as a software developer. The more lines of code, the more you need to type and more to maintain. There are some trade offs here. Especially when it comes to typed vs. dynamic languages. Types give you more safety and come at a cost - more things to type.

作为软件开发人员,这对您影响最大。 代码行越多,您需要键入的内容就越多,需要维护的内容也就越多。 这里有些折衷。 尤其是当涉及到打字语言还是动态语言时。 类型为您提供更多的安全性,而且要付出一定的代价-要打字的东西更多。

输入与动态 (Typed vs. dynamic)

Typed: Elm, Angular 4+ and AppRun.

键入 :Elm,Angular 4+和AppRun。

Dynamic: React | Redux, Angular 1.5, React | MobX, Crizmas MVC, CLJS Keechma, and CLJS re-frame.

动态 :React | Redux,Angular 1.5,React | MobX,Crizmas MVC,CLJS Keechma和CLJS重新构架。

So which is better? It’s not better or worse, it’s different. Like TDD (Test Driven Development), some people love it, some hate it. You can develop great software with or without it - pick the one that fits you better.

那么哪个更好呢? 它不是好是坏,这是不同的。 就像TDD(测试驱动开发)一样,有些人喜欢它,有些讨厌它。 无论有无软件,您都可以开发出色的软件-选择更适合您的软件。

Vue,Preact,Ember,Svelte,Aurelia等在哪里? (Where are Vue, Preact, Ember, Svelte, Aurelia and others?)

Seems like they are late to the party, but worry not. I’ll do another round when we have them. There are already open issues - consider contributing! Or start from scratch and open a new issue.

好像他们迟到了聚会,但不用担心。 有空的时候我再做一轮。 已经存在未解决的问题 -请考虑做出贡献! 或从头开始并打开一个新问题。

最后的话 (Final word)

This comparison is exactly what it says. Compares different implementations of similar real world web applications in a real world. I know, it’s not perfect. It differs based on server load, network traffic, and many other things that happen in the real world.

这种比较正是它所说的。 比较现实世界中类似现实世界Web应用程序的不同实现。 我知道,这并不完美。 它根据服务器负载,网络流量以及现实世界中发生的许多其他事件而有所不同。

Thanks to Daniel Compton for proof-reading.

感谢Daniel Compton的校对。

If you enjoyed this article, and would like to be notified when I release similar article consider following me on medium and twitter.

如果您喜欢这篇文章,并且希望在我发布类似文章时收到通知,请考虑在medium和twitter上关注我。

翻译自: https://www.freecodecamp.org/news/a-real-world-comparison-of-front-end-frameworks-with-benchmarks-e1cb62fd526c/

参考框架 系统 基准

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395028.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ppt复制切片器_零基础小白自学PPT快速入门到精通(上)

零基础小白如何自学PPT快速入门到精通呢?40个保姆级小技巧助力你高效掌握PPT基础操作!PPT在学习与工作中的应用越来越广泛:在学校时免不了要做毕业答辩、毕业论文,工作中时常要进行复盘总结、工作汇报、推广方案,有时甚…

网络安全初创公司SafeBreach获1500万美元A轮融资

今天,网络安全初创公司 SafeBreach 宣布完成1500 万美元 A 轮融资,新投资者德国电信、惠普公司、 Maverick Ventures 及现有投资者 Sequoia Capital 和 Shlomo Kramer 参投。公司计划利用本轮融资加大研发力度,扩大销售及营销团队&#xff0c…

php网站分区,PHP - Manual: 分区和分片 (官方文档)

分区和分片数据库群组是由于各种各样的原因建立的,他可以提升处理能力、容忍错误,并且提升大量服务器同时工作的的性能。群组有时会组合分区和共享功能,来将大量复杂的任务分拆成更加简单的任务,更加可控的单元。插件可以支持各种…

webBroser获取cookie

//取当前webBrowser登录后的Cookie值 [DllImport("wininet.dll", CharSet CharSet.Auto, SetLastError true)]static extern bool InternetGetCookieEx(string pchURL, string pchCookieName, StringBuilder pchCookieData, ref int pcchCookieData, int dwFlags…

了解Linux操作系统发展阶段

一、硬件与软件发展历史 计算机由硬件和软件组成结构 二、Linux的发展史 Linux 操作系统是Unix操作系统的一种克隆系统。它诞生于1991年的10月5日(只是第一次正式向外公布的时间)。以后借助于Internet网络,并经过全世界各地计算机爱好者的共同…

c gui qt 4编程第二版_面试官问Linux下如何编译C程序,如何回答?为你编译演示

文章来源:嵌入式大杂烩 作者:ZhengNLWindows下常用IDE来编译,Linux下直接使用gcc来编译,编译过程是Linux嵌入式编程的基础,也是嵌入式高频基础面试问题。一、命令行编译及各个细分编译过程hello.c示例代码:…

Python基础-----列表、元组、集合(2)

raw_input ##字符类型input##数值类型##格式化输出注释切片s[2:5]##切片从2开始到5,不包括5[kioskfoundation39 mnt]$ pythonPython 2.7.5 (default, Oct 11 2015, 17:47:16) [GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux2Type "help", "copyri…

调用lambda_如何使用Lambda调用上下文动态设置超时

调用lambdaby Yan Cui崔燕 如何使用Lambda调用上下文动态设置超时 (How to set timeouts dynamically using Lambda invocation context) With API Gateway and Lambda, you’re forced to use short timeouts on the server-side:使用API​​ Gateway和Lambda,您不…

php+tp框架+API,php - tp框架能开发API接口吗

怪我咯2017-04-10 17:12:231楼TP的controller其实有很多种的HproseController,JsonRpcController,RestController,RpcController,YarController我拿RestController给你介绍一下RESTFul方法的操作方法定义主要区别在于,需要对请求类型和资源类型进行判断,…

OTL翻译(9) --常量的SQL语句

常量的SQL语句 一个没有绑定变量的SQL语句、SQL语句块或是存储过程就被称为常量的SQL语句。OTL通过一个静态的函数来执行这样的SQL语句。 例如: // static otl_cursor::direct_exec()otl_cursor::direct_exec(db, // connect object"create table test_tab(f1 …

[HNOI2016]网络 树链剖分,堆

[HNOI2016]网络 LG传送门 表示乱搞比正解难想。 整体二分很好想吧。 但是为了好写快乐,我们选择三个\(\log\)的乱搞。 先树剖,线段树套堆维护区间最大值。对于一次修改,如果是插入,就把树上除了这条链的地方加上这个重要度&#x…

python压缩文件为zip-python 压缩文件为zip后删除原文件

压缩.log 文件为zip后删除原文件 需要注意:本人作为小白,该脚本需要和.log在一起,后面有时间需要改正。 #!/usr/local/python/bin/python #-*-codingutf8 -*- import time import os import sys import zipfile N 7 #设置删除多少天前的文件…

css text-align-last设置末尾文本对齐方式

text-align-last:auto | start | end | left | right | center | justify auto: 无特殊对齐方式。 left: 内容左对齐。 center: 内容居中对齐。 right: 内容右对齐。 justify: 内容两端对齐。 start&#x…

后端开发除了编码还要做什么_每个开发人员都应掌握的基本技能(除了编码)

后端开发除了编码还要做什么Whether you are learning to code, looking for a new job, or just want to improve your skills as a developer, you need to master the essential tools of team collaboration. These are as important as knowing how to code.无论您是学习编…

Python中的defaultdict方法

字典(dictionary)是Python中一种常用的数据类型。不同于其他由数字索引的序列,字典是用"键"(key)来索引的。通常表示为dict(key: val, ...),有以下特征: 键可以是任何不可变&#xff…

git撤销commit 并保存之前的修改

撤销并保留修改 参数 –soft # 先进行commit &#xff0c;之后后悔啦$ git commit -am "对首篇报告研究员字段改为author_name"执行git log $ git logcommit 3d6788f577faba5e1d408e372031c81beee79749Author: yous <yous.com>Date: Thu Dec 14 10:08:36 2017 …

php替换中文,PHP中文替换

//定义编码header( Content-Type:text/html;charsetutf-8 );$wordsarray(我,你,他);$content"测一测我是不是违禁词";$bannedgenerateRegularExpression($words);//检查违禁词$res_bannedcheck_words($banned,$content);write_html($content,$res_banned);/*** descr…

secoclient隧道保活超时或协商超时_推荐:承德市隧道led大屏厂家电话【联丰智慧科技】...

通过为大型隧道施工建设搭建全覆盖式的定位&#xff0c;可以有效施工的效率、项目现场的保障能力。安装隧道门禁能解决哪些问题&#xff1f;近年来&#xff0c;我国交通建设正处于高速发展的阶段&#xff0c;在交通建设中&#xff0c;工程安防工作也越发受到&#xff0c;越来越…

JavaScript Essentials:如何为循环而烦恼

by Zell Liew由Zell Liew JavaScript Essentials&#xff1a;如何为循环而烦恼 (JavaScript Essentials: how to wrap your head around for loops) Let’s say you want to run a function, bounceBall, four times. How would you do it? Like this?假设您要运行一次功能b…

python中的类的成员变量以及property函数

1 python类的各种变量 1.1 全局变量 在类外定义的变量。 1.2 类变量 定义在类里面&#xff0c;所有的函数外面的变量。这个变量只有一份&#xff0c;是所有的对象共有的。在类外用“类.”来引用。 1.3 实例变量 用self.xxx在类的任何函数中定义的变量就是实例变量。在类内用“s…