简体   繁体   中英

mysql framework for node.js

Is there any mysql framework for node.js? I found only https://github.com/felixge/node-mysql but this only allows executing "raw" mysql statements. I am looking for some tool which will provide easier way of manipulating mysql database and data.

Especially I need pagination and joining mechanisms...

I am not looking for a full framework because I am using restify to build RESTapi - just need a module to retrieve/save data to mysql db. So I need only "model" part of MVC ;).

It sounds like you may be looking for an ORM. If that's the case, you can take a look at Sequelize . It will let you define your objects, and then simply 'save' and 'fetch' them, without really having to worry about how its doing it.

You can look at db-mysql module. This module provides api for creating queries. Here is module GitHub page.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM