How to deploy app with node.js SDK to AWS Opsworks?

Hello,

I would like to deploy my app which used Couchbase Node.js SDK to AWS OpsWorks. Since the ‘couchnode’ module can’t be installed simply using npm package, should I install this module manually on the Amazon VM?

Any Suggestions? Thanks!

Hello,

Yes you have to do a manual installation.

The first think you have to do is to install libcouchbase (you can find some chef receipts to do that http://delarre.net/posts/deploying-libcouchbase-with-aws-elasticbeanstalk/ this could help)

Then you do the npm install.

PS: I have not tested myself with Opsworks

Regards
Tug
@tgrall

Hello Tug,

Thank you very much for replying. I have deployed my app to the OpsWorks successfully by manually install libcouchbase.

Thanks!