NodeJs Packages in AndroidJSCore
Closed this issue · 1 comments
maPaydar commented
can i use node packages in AndroidJSCore
?
i had some researches , in this link https://blog.risingstack.com/running-node-modules-in-your-ios-project/ used node packs in javascriptcore in swift,
i wanna implement it in AndroidJSCore
.
ericwlange commented
Yes, you should be able to run Node packages if they have been run through browserify
. The require()
function is not supported by core JavaScript, but browserify
should solve that particular problem. However, keep in mind that this is not a Node runtime environment (I am actually experimenting with that now), so if your package depends on things like fs
and process
, these won't be available.