NNinoinninolin.hashnode.dev·Apr 23, 2021 · 2 min readHow to connect AWS Lambda with SQL Server RDSIn Windows, if you want to connect to SQL Server don't need to install anything. But Linux has to install unixODBC first. Unluckily AWS Lambda is more difficult than both because lambda's environment is provided by AWS, and you can't control it. Here...00
NNinoinninolin.hashnode.dev·Dec 5, 2020 · 1 min readPromise waterfallJavaScript promise is very useful, but if you have unpredictable tasks that depend on the previous task or can't run parallel, this syntax can be helpful. Waterfall syntax Start by prepare a promise function called run const run = () => { return n...00