An Express Middleware for Streaming SQL
A really simple SQL streaming express middleware using implementation from node-mssql.
Example
import mssql from 'mssql'import runSqlInPool from 'express-middleware-streaming-mssql' // create your pool firstconst pool = new mssql.ConnectionPool(/*config*/) const runSql = runSqlInPool(pool) app.get('/', runSql(`select top 1 * from sometable`))