I can\'t get msnodesql to install.
Originally I tried
npm install node-sqlserver
... and this warns that it has been superceded by
kernel's answer got me most of the way there. i had to perform a couple of additional steps to get it to work.
config:
when i tried installing msnodesql per kernel's instructions:
npm install C:\Users\foo\msnodesql
... i got compile errors.
i made fixes based on what i read here: https://github.com/Azure/node-sqlserver/issues/168
unfortunately, his 2nd code change didn't come through. here are all the changes i made:
Operation.h, line 38, added cast to last argument:
int result = uv_queue_work(uv_default_loop(), &operation->work, OnBackground, (uv_after_work_cb)OnForeground);
stdafx.h, line 37, added #include to solve shared_ptr issues:
#include
after those changes, re-doing my npm install worked.