Connecting to Oracle database with Node.js Windows

I am trying to connect to an Oracle database from Node.js in Windows 7. Is this possible? I have not found a plugin for Node.js which will do this for Windows. Are there any recommended work arounds for this? I am guessing there is at least one other person wanting to use Node.js on Windows and needs to connect to Oracle. I'm open to simple workarounds if that is necessary. Thanks for the help.

Do you need to connect directly from Node.js to oracle? You could write your database transactions in another language and expose them to Node.js via a web service.

http://github.com/mariano/node-db-oracle This project aims to add oracle support to nodejs

EDIT: There is now an office nodejs driver for Oracle, by Oracle called node-oracle

https://blogs.oracle.com/opal/entry/introducing_node_oracledb_a_node

This driver works on Window: https://npmjs.org/package/oracle

A similar question as yours here on Stack Overflow: Connect Node.js with Oracle on Windows platform