taiki-t's diary

React Native, Rails そして雑多な記録: The world is waiting for you to give it a meaning.

FacebookのOSSとかFB内部版とかについてメモ

FacebookOSSについてRelayとかReact Nativeは割とIssueなど見たりしてきた。 その結果、それらにはどうやらFB内部版とOSS版があるんだなあといつしか思うようになった。

そう思うに至った会話すべてをあげつらうことはできないけど、いくつか記憶に残ってたり調べたりした結果出てきたものをメモしておこうと思った次第。

React NativeはOSSのものをそのままFacebook内部で使っているわけではない(※)

We use different Image and caching modules internally - - https://github.com/facebook/react-native/issues/9581#issuecomment-287834859

※と書いたのは、下記の記事には「OSSと全く同じものを使っている」と書いてあったりするから。ただ日付としては上記のIssueの方が新しい。全く同じものを使っていたらImageモジュールは別なの使っているとは言わないから、やっぱ別なのかなって感じ。

Facebook engineers use the exact same React Native code you see on GitHub; we don’t have a fork of the codebase. -- React Native: A year in review - Facebook Engineering

RelayもOSS版とFacebook内部版に違いがあるぽい

there is an issue with the OSS compiler -- https://github.com/facebook/relay/issues/1656#issuecomment-303007406

Relay Classicの時は割と顕著だった:

Relay was built to support server-side rendering, and we are doing so internally at Facebook. @voideanvalue gives a great overview of how that works. However, the necessary hooks and APIs are not exposed in the OSS release. --https://github.com/facebook/relay/issues/136#issue-102433255

 

We have one failing test in OSS which doesn't fail internally. -- Fix OSS-only test failure in RelayGraphQLMutation · Issue #1065 · facebook/relay · GitHub

Relay、Classicの時すでに数々の欠けていた機能、SSRやオフライン対応、サブスクリプションがFB内部の実装では使えていたぽい。これを見ると"in OSS"と新機能欄に書かれている。

  • server rendering in OSS
  • work offline in OSS
  • subscriptions in OSS

--https://github.com/facebook/relay/blob/ea03e9ba6bc5763c18b9745eeab375087507307e/meta/meeting-notes/2016-02-05-product-requirements-and-core-values.md

FBにはでかいモノレポがある

Facebook中の人によるとレポジトリ2つしかないぽい

まあこんなツールも作ってるしね

github.com

感想

React Nativeでは画像のキャッシュ調べてたときは「その内部で使われてるモジュール公開してもらえると嬉しいです」と思ったり「使ってないからメンテされないのか」みたいな納得をした。Relayについては client schema はやはり内部的には困ってないのかあ(内部では使えてる実装があるから)みたいなことを思った。

最後に

詳しい方や、OSS版と内部版の関係について書かれているドキュメントを知っている方がいれば教えてもらえたら嬉しいです。