I have a Titanium project which uses the CommonJS module style. However the code uses absolute paths so that when it builds the absolute path is sandboxed to the application
After finding a solution here is what I learned: The short answer to the exact above question is you can't do that. Node reads absolute paths as absolute paths. So the answer in short was to change my paths from absolute to pseudo-absolute (relative) paths. Here is a quote from this blog post that sheds some light:
the Titanium implementation of CommonJS
require()
is buggy and doesn’t correctly support relative paths. This represents a major problem when trying to integrate jasmine-node test runners in projects with even minimally complex directory trees.A possible solution to the issue is to not use relative paths in
require()
in Titanium (but you are free to use them in your jasmine specs run through node). Instead of relative paths we need to use full paths withResources
as the root directory.
This is accomplished by setting the NODE_PATH
environment variable prior to running any node commands. That way a path such as `require("module/path") is resolved by node and titanium.
There are a few caveats. Some module force the need for absolute paths. In this case one needs proxyquire to mock out the absolute paths as long as there are not any circular dependancies this will work. Also since node does not have Titanium API's you also have to include the mockti package to mock out the Titanium API. Use this in your spec_helper.js:
global.Ti = require("mockti");
and
proxyquire = require("proxyquire");
var myModule = proxyquire("relative/path/to/MyModule", {
"/absolute/path/to/some/module": require("absolute/path/to/some/module")
});