DEV Community

Stargator
Stargator

Posted on • Updated on

 

Explain Mock-Up versus Proof of Concept

I recently joined a project and they are working on a proof of concept in order to see if it meets the client's needs. But how far does a Proof of Concept need to go?

How much of it can be faked and how much needs to be real logic/data? I know that depends on the situation.

Top comments (3)

Collapse
 
jvarness profile image
Jake Varness

I think as long as your clients can understand the intent behind the design of the application and the intended usage of it, faking the data should be fine.

To me a mock-up is something like a photo of how the application is supposed to look rather than a tangible application. A proof-of-concept is a written application that is boilerplate for the most part that will allow the users to experience how it's used.

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.