编辑推荐
「全码」 通用搭建:现代 Web 研发体系中的新一代低/零码搭建
低代码是一个很宽泛的话题,如果背景不同、需求不同,解决方案也会差别很大。所以在这次分享的第一个部分里,我们先明确一下这套方案背后最根本的需求是什么;在第二部分,我们盘点下各种低码、零码解决方案在这个背景下的瓶颈问题;最后第三部分来看下「全码」通用搭建是怎样的解决方案。
技术探索
Deco 智能代码技术揭秘:设计稿智能生成代码
我们思考「求变」,在智能化思想愈来愈热的当下,传统的研发提效方式遭遇瓶颈,那我们是否能用智能化的思想来解决呢?我们思索着,既然更快地写代码这条路看似已经走得差不多了,那我们能否基于 AI 手段来实现代码生成,让我们写更少的代码,于是,我们探索的方向就转向了「前端」+「智能化」。
为什么说 WASM 是 Web 的未来?
了解 WebAssembly 的前世今生,展望未来,列举一些令人兴奋的发展方向。
前端工程化(9):低代码在EHR领域中的实践
目前,我们打造了一个通用性,而非业务指向性,但是又非常适合EHR的【飞轮】低代码平台,并已顺利服务于线上环境。借此上线的时机,在这跟大家简单分享下【飞轮】低代码的核心设计理念以及未来的一些规划。
外文精选
Algorithms in JavaScript with visual examples.
Most of us are scared of algorithms, and don't ever start to learn it. But we shouldn't be scared of it. An algorithm is just steps to solve a problem.Today let's cover major Algorithms in an easy and illustrative manner.
How JavaScript engines achieve great performance
JavaScript is an impressive technology. Not because it’s particularly well-designed (it isn’t). Not because almost every single consumer device with internet access in the world has executed a JavaScript program. Instead, JavaScript is impressive because almost every single feature of the language makes it a nightmare to optimize and yet, it is fast.
30 years of the website: building web applications for the future
Although we currently use websites in ways that make them closer to applications than the traditional idea of a website, we aren’t consistently building them that way. It’s time we embrace a more dynamic mindset in how we approach web development, and consider the tools we need to get there.
An Engineer's Hype-Free Observations on Web3 (and its Possibilities)
The Web3 ecosystem has been variously described as a collective hallucination, a massive grift, an environmental disaster, a decentralized renaissance, and the future of the Internet.
实践 & 应用
剖析 npm、yarn 与 pnpm 依赖管理逻辑
我们在项目开发的过程中会引用到各种不同的库,各种库又依赖了其他不同的库,这些依赖应该如何进行管理,今天这篇文章主要聊的就是这个事情。
简明 CSS Grid 布局教程
网格布局是由一系列水平及垂直的线构成的一种布局方法,使用网格,我们能够将设计元素进行排列,帮助我们设计一系列具有固定位置以及宽度的元素的页面,使我们的网站页面更加统一。
没想到吧!这个可可爱爱的游戏居然是用 ECharts 实现的!
echarts是一个很强大的图表库,除了我们常见的图表功能,echarts有一个自定义图形的功能。这个功能可以让我们很简单地在画布上绘制一些非常规的图形,基于此,我们来玩一些花哨的。
从零深入Chrome插件开发
使用Chrome插件可以为Chrome浏览器带来一些功能性的扩展,进而提高使用体验;俗话说的好Chrome没插件,香味少一半,Chrome最大的优势还是其支持众多强大好用的扩展程序;今天我们就来了解一下插件是如何开发的,和我们普通的浏览器页面开发有什么区别,以及安利一些功能强大的插件。
刨根问到底:[...undefined] 执行结果是什么
...可以称之为展开语法(Spread syntax),又可以叫扩展运算符。可以在函数调用/数组构造时, 将数组表达式或者string在语法层面展开;还可以在构造字面量对象时, 将对象表达式按key-value的方式展开。当...应用在undefined时会发生什么呢?