AJAbhi Jaininstrongbase.hashnode.dev·Jun 14, 2023 · 2 min readJavaScript Asynchronous Programming and Callbackshey In this blog I am going to talk about how Asynchronous Program works in Js which is a synchronous programming language. JavaScript is synchronous by default and is single-threaded. This means that code cannot create new threads and run in paralle...01G
AJAbhi Jaininstrongbase.hashnode.dev·Jun 13, 2023 · 5 min readAsynchronous flow control in Nodejshey in this blog, I am going to talk about asynchronous flow control in Nodejs. I was actually reading their official docs for this. Node.js with seamless asynchronous flow control. Efficiently managing concurrent operations is the key to building hi...00
AJAbhi Jaininstrongbase.hashnode.dev·Jun 12, 2023 · 3 min readHow to use ffmpeg to convert any file into mp3Hey In this blog I am going to share how I was able to use ffmpeg to convert video files of any type (mp4, wav) into mp3 files when I was building a product for my client. first, we need to install it on the server side. I use Nodejs. npm i ffmpeg. ...00
AJAbhi Jaininstrongbase.hashnode.dev·Apr 25, 2023 · 3 min readHow to use a webcam in the Nextjs applicationhey folks, In this blog I wanted to share my latest experience of building a video streaming platform for my client. if you are looking to build a video streaming platform you would need to use a webcam for your user and here is how you can do this. ...00
AJAbhi Jaininstrongbase.hashnode.dev·Apr 13, 2023 · 2 min readHow to Integrate Stripe API in Nextjsworking with Stripe was so hectic task for me which I recently did on my client project. today In this blog I am going to write that experience and how did I do that as well. first, you have to set up the stripe account and build your products manual...00