#js
#callbacks
#assembler-institute
#master-in-software-development
First, you will need to clone the repo:
$ git clone https://github.com/assembler-institute/js-callback-exercises/
Then, you will have to install all the dependencies with npm:
$ npm install
You will probably have to execute the following command in the terminal line in order to fix the dependency issues:
$ npm audit fix
Once you have completed all the steps of the Getting Started section, you will have to execute the following command that will prepare a localhost environment.
The command will compile all the necessary assets into a new folder called dist and it will open a localhost server that allows you to do the exercises without having to reload the page:
npm run start
Finally you have to open a new terminal (you must leave the previous one open, since it has the test server running).
In this new terminal you will have to execute the following command, which will allow you to know in real time if you have correctly implemented the exercises.
npm run test
Keep in mind that the files to which you must implement your solution are those found inside the src folder
In case that you want to see in the browser the result of your solutions, you will have to click the execute
button from the index.html file.