BunJs a New JS Runtime
New frameworks and libraries are not a new thing in the Javascript ecosystem. So what makes Bun different from other libraries/framework? Let's find out.
New frameworks and libraries are not a new thing in the Javascript ecosystem. So what makes Bun different from other libraries/framework? Let's find out.
Async and sync are probably two of the most heard words among javascript developers, they refer to asynchronous and synchronous programming respectively. But how do they differ in performance? Here is a simple async vs sync benchmark.
setImmediate() and process.nextTick() are two functions which allows us to control the order of execution of our code in the event loop. Both of these functions schedule our callback handlers in the event queue. But they are executed at different phases of the event loop.
Code to an interface is a technique used in programming where you build your application based on abstractions(interface) and not concretions(classes).
Composer is an application-level dependency manager for PHP. Dependency simply means libraries/packages your application depends upon. Apart from managing the dependencies, composer will also autoload the files needed for the application.