# Frontend Here it is described how to work with the frontend in the system. ## Working with TypeScript The main programming languange used for the front end is TypeScript. ### npm `npm` is the node package manager. Below we briefly describe how to use it. All of the following snippets assume you are in the `client` folder. To install a module, run `npm install `. To uninstall a module, run `npm uninstall `. To install all project dependencies, run `npm install`. It is important to remember to install the project dependencies whenever someone else has added new ones to the project.