This repository contains the source code for the code challenge posted in the job application.
The entry point of the application is index.js
.
To run the application, you need to follow these steps:
-
Install Node.js: Make sure you have Node.js installed on your system. If not, you can download it from nodejs.org.
-
Navigate to the Application Directory: Open your terminal and navigate to the directory of the application using the
cd
command:cd path/to/the/application
-
Install the dependencies by running
npm install
in the terminal. -
Execute the application by running
node index.js
in the terminal.
To run the tests:
-
Navigate to the Application Directory using the command above
-
Run the tests by executing this command
npm test
in the terminal.