After reading some documentation I know I can use below configuration to enable Windows Authentication
var config = {
driver: "msnodesqlv8",
server: "localhost",
database: "MyDatabase",
options: {
trustedConnection: true
},
};
So what is the authentication protocol for this Windows Authentication? Thanks.