Flow
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=Languages |subcat=Programming Languages |extensions={{ext|js}}, {{ext|jsx}} |released=2013 }} '''Flow''' is yet another variant of JavaScript, add...") |
|||
Line 3: | Line 3: | ||
|subcat=Programming Languages | |subcat=Programming Languages | ||
|extensions={{ext|js}}, {{ext|jsx}} | |extensions={{ext|js}}, {{ext|jsx}} | ||
− | |||
}} | }} | ||
− | '''Flow''' is yet another variant of [[JavaScript]], adding support for static type checking. To be used in standard JavaScript environments, Flow must be transpiled to JavaScript using the free and open source transpiler [https://babeljs.io/ Babel], which also allows simultaneous use of [[JSX]] and Flow. | + | '''Flow''' is yet another variant of [[JavaScript]], adding support for static type checking. To be used in standard JavaScript environments, Flow must be transpiled to JavaScript using the free and open source transpiler [https://babeljs.io/ Babel], which also allows simultaneous use of [[JSX]] and Flow (both of which were created by Facebook). |
== Links == | == Links == | ||
* [https://flow.org/en/ Official site] | * [https://flow.org/en/ Official site] |
Latest revision as of 03:06, 16 May 2017
Flow is yet another variant of JavaScript, adding support for static type checking. To be used in standard JavaScript environments, Flow must be transpiled to JavaScript using the free and open source transpiler Babel, which also allows simultaneous use of JSX and Flow (both of which were created by Facebook).