Hi,
I have a project that comes with the mem file as well as some fonts that I
preload for browser usage. I would like to package this project for node.js
as well. As node doesn't support the preload setting, I have decided to
deploy my fonts thru npm.
I tried to use npm install to release my project but when I do a require in
my test file:
var testApp = require('EmscriptenApp');
I observe that EmscriptenApp.js tries to load EmscriptenApp.mem from the
current directory which is where my test file is and not in the
node_modules sub folder where EmscriptenApp.mem is residing. I could turn
off the memory file option but would prefer not to so that I can get a
better performance on the browser.
The other point is that my fonts are also npm installed into subfolders in
node_modules so how should I mount my FS root directory in EmscriptenApp.js
to access them?
Or perhaps, is there a better approach to this issue?
--
You received this message because you are subscribed to the Google Groups
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.