#This project was created to illustrate an approximation algorithm for the Traveling-Salesman-Problem.
For development, you will only need Node.js and a node global package, installed in your environement.
Just go on official Node.js website and download the installer.
-
You can install nodejs and npm easily with apt install, just run the following commands.
$ sudo apt install nodejs $ sudo apt install npm
-
You can find more information about the installation on the official Node.js website and the official NPM website.
If the installation was successful, you should be able to run the following command.
$ node --version
v14.16.1
$ npm --version
6.14.12
If you need to update npm
, you can make it using npm
!
$ npm install npm -g
$ git clone https://github.com/nagod/approx-tsp-web-app
$ cd PROJECT_TITLE // move into diretory where project has been cloned into e.g cd ~/Desktop/approx-tsp-web-app
$ npm install
$ npm start
After you started the Engine, your browser opens and the project should be running. If this is not the case, open your preferred browser and type http://localhost:3000 in your URL bar.