I have an application that is using express and it must connect to a mssqlserver database.
The NPM package wont install due to it currently being out of date with Node. The git repo:
git://github.com/WindowsAzure/node-sqlserver.git
Has update the version numbers so I have been able to build the addon locally. Everything works with the addon, i.e. I can query a mssqlserver database.
The problem is that I now want to deploy this application to Heroku. I have moved the addon I built into a "libs" folder that gets commited to the git repo, allowing my node app to find the module when Heroku starts the application.
The following runtime error occurs when the app tries to start:
2012-08-21T14:37:43+00:00 app[web.1]: Error: /app/libs/node-sqlserver/lib/sqlserver.node: invalid ELF header
I am guessing this is because I have built the extension locally, maybe an mismatch in architecture?
I am running win7 64-bit.
Has anyone came across this problem before and knows how to fix it? Is there a better way of deploying Heroku apps using addons that are not in NPM?