Reputation: 65
I'm working on desktop application using node-webkit. I would like to use database in my application. I know that I can use WebSQL and probably also Sqlite, but I would like to add some orm to simplify my work. I tried with sequelize but I have some problems with it. Do you know any examples for node-webkit + any orm library?
Upvotes: 1
Views: 622
Reputation: 2828
In Node-WebKit you can you use modules written totally in JavaScript. For modules containing C/C++ you should build the addons by node-gyp because the ABI (application binary interface) of node-webkit differs from Node's ABI.
Try smth like sequelize-sqlite that JavaScript 100% or find other modules in npm go to it GitHub repository and under row commits, branch, releases & contributor click coloured row "Show language statistic".
Upvotes: 1