| Filename | Latest commit message | Latest commit date |
|---|---|---|
I spent some time fixing the latter because browsers have started warning that synchronous XMLHttpRequest calls on the "main thread" (as Firefox calls it) are deprecated. Since the days of such calls seems to be numbered, I decided to act sooner rather than later. All PCjs XMLHttpRequests go through a single library function (weblib.loadResource), which accepts an fAsync parameter, and the only code that is still allowed to pass false for that parameter are "emergency" shutdown requests (which I believe browsers must still allow). |
||
| .. | ||
| component.js | ||
| defines.js | ||
| diskapi.js | ||
| dumpapi.js | ||
| embed.js | ||
| externs.js | ||
| netlib.js | ||
| nodebug.js | ||
| proclib.js | ||
| README.md | ||
| reportapi.js | ||
| sockets.js | ||
| strlib.js | ||
| userapi.js | ||
| usrlib.js | ||
| weblib.js | ||
Shared Sources
This folder contains a mix of shared code, with some files used only by Node (server) modules, some used only by Browser (client) modules, and others used by both.
At the moment, only a few files are completely agnostic; eg: strlib.js and usrlib.js. One give-away is that neither contain references to any globals (although references to each other would be fine).
netlib.js is appropriate only for Node modules, because it contains code that relies on Node's global Buffer object, as indicated by:
/* global Buffer: false */
And weblib.js is appropriate only for client modules, because it contains code that relies on the browser's global window object, as indicated by:
/* global window: true */
We declare window modifiable (true) so that defines.js can set global.window to false when running within Node, allowing any other code to test the existence of window with a simple:
if (window) {...}
instead of:
if (typeof window !== "undefined") {...}