React考古(2016)
Archeology of React (2016)

原始链接: https://legacy.reactjs.org/blog/2016/09/28/our-first-50000-stars.html

为了庆祝 GitHub 星标达到 50,000 颗,React 的创建者们分享了该库的历史,从它在 Facebook 内部的起源说起。React 的出现是为了改进内部的 MVC 框架 BoltJS,随着应用的增长,BoltJS 变得越来越复杂。Jordan Walke 的个人项目 FaxJS 引入了诸如 props、state 和服务器端渲染等基本概念。这演变成了 "FBolt",它将函数式编程与 Bolt 结合在一起,最终在 Tom Occhino 的建议下变成了 "React"。 早期,React 采用了 JSX,灵感来自于 Facebook 的 XHP,允许在 JavaScript 中使用类似 XML 的语法来构建 UI。Adam Hupp 建议将元素数组在 JSX 中作为片段处理。在最初的一年里,React 在内部得到了迅速的采用,但也经历了大量的 API 变动,Lee Byron 将生命周期 API 完善成了现在的设计。 Instagram 被 Facebook 收购,以及 Pete Hunt 推动使用 React 完全构建 Instagram 网站,迫使 React 从 Facebook 的基础设施中分离出来,为开源铺平了道路。设计师 Maykel Loomans 为 React 的视觉识别,包括 logo 做出了贡献。React 的成功归功于持续的改进和开源社区的贡献,它通过函数式编程原则彻底改变了 UI 开发。

Hacker News 最新 | 过去 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 React 考古学 (2016) (reactjs.org) 3 分 goranmoomin 1 小时前 | 隐藏 | 过去 | 收藏 | 讨论 加入我们,参加 6 月 16-17 日在旧金山举办的 AI 初创公司学校! 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系我们 搜索:
相关文章
  • (评论) 2025-04-15
  • (评论) 2025-04-07
  • JSX跨线传输 2025-04-15
  • (评论) 2024-06-22
  • 双电脑React 2025-04-09

  • 原文

    This blog site has been archived. Go to react.dev/blog to see the recent posts.

    Just three and a half years ago we open sourced a little JavaScript library called React. The journey since that day has been incredibly exciting.

    Commemorative T-Shirt

    In order to celebrate 50,000 GitHub stars, Maggie Appleton from egghead.io has designed us a special T-shirt, which will be available for purchase from Teespring only for a week through Thursday, October 6. Maggie also wrote a blog post showing all the different concepts she came up with before settling on the final design.

    React 50k Tshirt

    The T-shirts are super soft using American Apparel’s tri-blend fabric; we also have kids and toddler T-shirts and baby onesies available.

    Proceeds from the shirts will be donated to CODE2040, a nonprofit that creates access, awareness, and opportunities in technology for underrepresented minorities with a specific focus on Black and Latinx talent.

    Archeology

    We’ve spent a lot of time trying to explain the concepts behind React and the problems it attempts to solve, but we haven’t talked much about how React evolved before being open sourced. This milestone seemed like as good a time as any to dig through the earliest commits and share some of the more important moments and fun facts.

    The story begins in our ads org, where we were building incredibly sophisticated client side web apps using an internal MVC framework called BoltJS. Here’s a sample of what some Bolt code looked like:

    var CarView = require('javelin/core').createClass({
      name: 'CarView',
      extend: require('container').Container,
      properties: {
        wheels: 4,
      },
      declare: function() {
        return {
          childViews: [
            { content: 'I have ' },
            { ref: 'wheelView' },
            { content: ' wheels' }
          ]
        };
      },
      setWheels: function(wheels) {
        this.findRef('wheelView').setContent(wheels);
      },
      getWheels: function() {
        return this.findRef('wheelView').getContent();
      },
    });
    
    var car = new CarView();
    car.setWheels(3);
    car.placeIn(document.body);
    
    
    
    
    

    Bolt introduced a number of APIs and features that would eventually make their way into React including render, createClass, and refs. Bolt introduced the concept of refs as a way to create references to nodes that can be used imperatively. This was relevant for legacy interoperability and incremental adoption, and while React would eventually strive to be a lot more functional, refs proved to be a very useful way to break out of the functional paradigm when the need arose.

    But as our applications grew more and more sophisticated, our Bolt codebases got pretty complicated. Recognizing some of the framework’s shortcomings, Jordan Walke started experimenting with a side-project called FaxJS. His goal was to solve many of the same problems as Bolt, but in a very different way. This is actually where most of React’s fundamentals were born, including props, state, re-evaluating large portions of the tree to “diff” the UI, server-side rendering, and a basic concept of components.

    TestProject.PersonDisplayer = {
      structure : function() {
        return Div({
          classSet: { personDisplayerContainer: true },
          titleDiv: Div({
            classSet: { personNameTitle: true },
            content: this.props.name
          }),
          nestedAgeDiv: Div({
            content: 'Interests: ' + this.props.interests
          })
        });
      }
    };

    FBolt is Born

    Through his FaxJS experiment, Jordan became convinced that functional APIs — which discouraged mutation — offered a better, more scalable way to build user interfaces. He imported his library into Facebook’s codebase in March of 2012 and renamed it “FBolt”, signifying an extension of Bolt where components are written in a functional programming style. Or maybe “FBolt” was a nod to FaxJS – he didn’t tell us! ;)

    The interoperability between FBolt and Bolt allowed us to experiment with replacing just one component at a time with more functional component APIs. We could test the waters of this new functional paradigm, without having to go all in. We started with the components that were clearly best expressed functionally and then we would later continue to push the boundaries of what we could express as functions.

    Realizing that FBolt wouldn’t be a great name for the library when used on its own, Jordan Walke and Tom Occhino decided on a new name: “React.” After Tom sent out the diff to rename everything to React, Jordan commented:

    Jordan Walke: I might add for the sake of discussion, that many systems advertise some kind of reactivity, but they usually require that you set up some kind of point-to-point listeners and won’t work on structured data. This API reacts to any state or property changes, and works with data of any form (as deeply structured as the graph itself) so I think the name is fitting.

    Most of Tom’s other commits at the time were on the first version of GraphiQL, a project which was recently open sourced.

    Adding JSX

    Since about 2010 Facebook has been using an extension of PHP called XHP, which enables engineers to create UIs using XML literals right inside their PHP code. It was first introduced to help prevent XSS holes but ended up being an excellent way to structure applications with custom components.

    final class :a:post extends :x:element {
      attribute :a;
      protected function render(): XHPRoot {
        $anchor = <a>{$this->getChildren()}</a>;
        $form = (
          <form
            method="post"
            action={$this->:href}
            target={$this->:target}
            class="postLink"
          >{$anchor}</form>
        );
        $this->transferAllAttributes($anchor);
        return $form;
      }
    }

    Before Jordan’s work had even made its way into the Facebook codebase, Adam Hupp implemented an XHP-like concept for JavaScript, written in Haskell. This system enabled you to write the following inside a JavaScript file:

    function :example:hello(attrib, children) {
      return (
        <div class="special">
          <h1>Hello, World!</h1>
          {children}
        </div>
      );
    }

    It would compile the above into the following normal ES3-compatible JavaScript:

    function jsx_example_hello(attrib, children) {
      return (
        S.create("div", {"class": "special"}, [
          S.create("h1", {}, ["Hello, World!"]),
          children
        ]
      );
    }

    In this prototype, S.create would immediately create and return a DOM node. Most of the conversations on this prototype revolved around the performance characteristics of innerHTML versus creating DOM nodes directly. At the time, it would have been less than ideal to push developers universally in the direction of creating DOM nodes directly since it did not perform as well, especially in Firefox and IE. Facebook’s then-CTO Bret Taylor chimed in on the discussion at the time in favor of innerHTML over document.createElement:

    Bret Taylor: If you are not convinced about innerHTML, here is a small microbenchmark. It is about the same in Chrome. innerHTML is about 30% faster in the latest version of Firefox (much more in previous versions), and about 90% faster in IE8.

    This work was eventually abandoned but was revived after React made its way into the codebase. Jordan sidelined the previous performance discussions by introducing the concept of a “Virtual DOM,” though its eventual name didn’t exist yet.

    Jordan Walke: For the first step, I propose that we do the easiest, yet most general transformation possible. My suggestion is to simply map xml expressions to function call expressions.

    • <x></x> becomes x( )
    • <x height=12></x> becomes x( {height:12} )
    • <x> <y> </y> </x> becomes x({ childList: [y( )] })

    At this point, JSX doesn’t need to know about React - it’s just a convenient way to write function calls. Coincidentally, React’s primary abstraction is the function. Okay maybe it’s not so coincidental ;)

    Adam made a very insightful comment, which is now the default way we write lists in React with JSX.

    Adam Hupp: I think we should just treat arrays of elements as a frag. This is useful for constructs like:

    <ul>{foo.map(function(i) { return <li>{i.data}</li>; })}</ul>

    In this case the ul(..) will get a childList with a single child, which is itself a list.

    React didn’t end up using Adam’s implementation directly. Instead, we created JSX by forking js-xml-literal, a side project by XHP creator Marcel Laverdet. JSX took its name from js-xml-literal, which Jordan modified to just be syntactic sugar for deeply nested function calls.

    API Churn

    During the first year of React, internal adoption was growing quickly but there was quite a lot of churn in the component APIs and naming conventions:

    • project was renamed to declare then to structure and finally to render.
    • Componentize was renamed to createComponent and finally to createClass.

    As the project was about to be open sourced, Lee Byron sat down with Jordan Walke, Tom Occhino and Sebastian Markbåge in order to refactor, reimplement, and rename one of React’s most beloved features – the lifecycle API. Lee came up with a well-designed API that is still in place today.

    • Concepts

      • component - a ReactComponent instance
      • state - internal state to a component
      • props - external state to a component
      • markup - the stringy HTML-ish stuff components generate
      • DOM - the document and elements within the document
    • Actions

      • mount - to put a component into a DOM
      • initialize - to prepare a component for rendering
      • update - a transition of state (and props) resulting a render.
      • render - a side-effect-free process to get the representation (markup) of a component.
      • validate - make assertions about something created and provided
      • destroy - opposite of initialize
    • Operands

      • create - make a new thing
      • get - get an existing thing
      • set - merge into existing
      • replace - replace existing
      • receive - respond to new data
      • force - skip checks to do action
    • Notifications

      • shouldObjectAction
      • objectWillAction
      • objectDidAction

    Instagram

    In 2012, Instagram got acquired by Facebook. Pete Hunt, who was working on Facebook photos and videos at the time, joined their newly formed web team. He wanted to build their website completely in React, which was in stark contrast with the incremental adoption model that had been used at Facebook.

    To make this happen, React had to be decoupled from Facebook’s infrastructure, since Instagram didn’t use any of it. This project acted as a forcing function to do the work needed to open source React. In the process, Pete also discovered and promoted a little project called webpack. He also implemented the renderToString primitive which was needed to do server-side rendering.

    As we started to prepare for the open source launch, Maykel Loomans, a designer on Instagram, made a mock of what the website could look like. The header ended up defining the visual identity of React: its logo and the electric blue color!

    React website mock

    In its earliest days, React benefited tremendously from feedback, ideas, and technical contributions of early adopters and collaborators all over the company. While it might look like an overnight success in hindsight, the story of React is actually a great example of how new ideas often need to go through several rounds of refinement, iteration, and course correction over a long period of time before reaching their full potential.

    React’s approach to building user interfaces with functional programming principles has changed the way we do things in just a few short years. It goes without saying, but React would be nothing without the amazing open source community that’s built up around it!

    联系我们 contact @ memedata.com