Lines Matching refs:JavaScript
1 Use in JavaScript {#flatbuffers_guide_use_javascript}
6 Before diving into the FlatBuffers usage in JavaScript, it should be noted that
9 (including JavaScript). This page is specifically designed to cover the nuances
10 of FlatBuffers usage in JavaScript.
17 ## FlatBuffers JavaScript library code location
19 The code for the FlatBuffers JavaScript library can be found at
23 ## Testing the FlatBuffers JavaScript library
25 The code to test the JavaScript library can be found at `flatbuffers/tests`.
32 *Note: The JavaScript test file requires [Node.js](https://nodejs.org/en/).*
34 ## Using the FlatBuffers JavaScript libary
37 example of how to use FlatBuffers in JavaScript.*
39 FlatBuffers supports both reading and writing FlatBuffers in JavaScript.
41 To use FlatBuffers in your own code, first generate JavaScript classes from your
50 *Note: Both JavaScript module loaders (e.g. Node.js) and browser-based
51 HTML/JavaScript code segments are shown below in the following snippet:*
54 // Note: These require functions are specific to JavaScript module loaders
68 // Note: This code is specific to browser-based HTML/JavaScript. See above
69 // for the code using JavaScript module loaders (e.g. Node.js).
102 ## Text parsing FlatBuffers in JavaScript
105 from JavaScript.