The curious case of res.render
If you have ever tried to build a website, chances are you have encountered res.render.
If you program in PHP (Laravel), you know it as view.
Route::get('/', function () {
return view("home");
});
If you are coming from the land of Ruby on Rails, ...
ghosthugs.hashnode.dev7 min read