Using Node.js modules in a mobile project

You must Login before you can answer or comment on any questions.

Since Titanium provides a javascript runtime, would it be okay to use node.js modules, such has sqlite3 (for node.js)? Some node.js modules provide tools to ease development for a large project, but could bloat the JS runtime. Does anyone have any experience they can share on this?

1 Answer

I think you can use only the pure javascript modules and that don't have native dependencies (let's say sys), those that have some C bindings won't run.

Play a little and see how it behaves :)

Your Answer

Think you can help? Login to answer this question!