DEV Community

Mike Sedzielewski
Mike Sedzielewski

Posted on

 

Buidling an online marketplace platform from scratch

Hey there,

After launching a couple of successful (and these not-so-lucky too) products at rspective and Voucherify, we've concluded that we've gained some solid knowledge on how to approach software development from the business point of view. To put it in a nutshell, we focus on:

  • fast iterations,
  • decent time to market,
  • reduced overengineering,
  • leveraging modern SaaS/API platforms.

Now we'd like to share these insights on architecture & process with the community. To give you better understanding of what we want to show, take a look at this article on how to build an online marketplace from scratch. It's a beginning of the series where we demonstrate how to develop and ship an application in a dynamic business environment. It shows how to use external SaaS/API platforms to get things done super fast.

Is this something you would be interested in?

Top comments (2)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.