SAShrawan Adhikariindevarc.hashnode.dev·Nov 28, 2021 · 4 min readSimple Web Server And REST API Using NodeJS And ExpressNodeJS is a JavaScript run-time based on Google's Chrome V8 JavaScript engine. Introduction To get started - please make sure that your version of Node is at least greater than v10.18.0 or later.You can check your node version using: node -v . Or if ...00
SAShrawan Adhikariindevarc.hashnode.dev·Nov 28, 2021 · 3 min readTesting with Mockito and PowerMockitoIntroduction Mockito is a mocking framework. i.e it simulates the behavior of a real method/object. In Simple Term: It mocks/replicates the main method/object by creating its dummy functionality. Why do we need a mocking framework ?We want to test ...00