You can find some good sample usages in this code such as Promise, Async/Await, spread/rest of array.
Programming Languages
C# Pipeline Handler & Logger
I have created a demo project for log handler and TryCatch wrapper (https://kenanhancer.com/2018/06/26/c-trycatchwrapper-and-logging/_.
I need a logger which can write to console and file at the same time. So, I created this demo which creates logger pipeline dynamicly. When code runs, it will write message in console and FileLog.log file at the same time.
Node.js Long-running requests with RabbitMQ
It is a very simple example to show how to handle long-running requests in Node.js with RabbitMQ.
You need to have a RabbitMQ docker in development machine.
Install RabbitMQ with Docker
Node.js Get Git UserDetails as Asynchronous with Async/Await and Promise (ES6, ES7)
Node.js Get Git UserDetails as Asynchronous with Promise (ES6)
I implemented ES6 syntax for below example.
Node.js Get Git UserDetails as Asynchronous with Promise (ES5)
Node.js Get Git UserDetails as Asynchronous with Promise (ES5)
This Node.js code will get git user details. I used standard ES5 functions and promise.
C# LocalDataStoreSlot, ThreadStatic, and ThreadLocal To Pass Thread Specific Data
Nodejs Web Crawler
C# Asynchronous Programming Patterns
There are 3 Asynchronous Programming Patterns in C#.
1- Asynchronous Programming Model (APM)
2- Event-based Asynchronous Pattern (EAP)
3- Task-based Asynchronous Pattern (TAP)
1- Asynchronous Programming Model (APM)
Asynchronous Programming Model using Delegates
you can reach that article from Calling synchronous methods asynchronously