Some modules do not seem to work on client

And I don’t mean ones like I/O or anything, things that SHOULD work on the client. For example, later.js, or

Anyone else running into this problem?

I can tell you where later.js is failing, and can quickly hack it to get it working, but I haven’t had a chance to track down the cause yet (you might want to open an issue on this one). After you’ve npm installed later.js, crack open the node_modules/later/index.js file. If you comment out

require(process.env['LATER_COV'] ? "./later-cov" : "./later");

and add in

require("./later");

it will start working properly.

Ahh, it makes perfect sense why that would happen then, that is kind of annoying really