- Version: v4.3.1
- Platform: Windows 64-bit
- Subsystem: N/A
In the documentation of globals at https://nodejs.org/api/globals.html I'm missing certain globals, such as Uint16Array, Uint8Array, etc even though they are obviously globals and don't need to be required in.
For people trying to write universal javascript, it would be quite nice to have a proper documentation of all globals in node.
Running the following code will print out many globals that are missing in the global documentation page:
Object.getOwnPropertyNames(global).sort().forEach(x => console.log(x));
In the documentation of globals at https://nodejs.org/api/globals.html I'm missing certain globals, such as Uint16Array, Uint8Array, etc even though they are obviously globals and don't need to be required in.
For people trying to write universal javascript, it would be quite nice to have a proper documentation of all globals in node.
Running the following code will print out many globals that are missing in the global documentation page: