Setup - PMeschenmoser/Visual-Analyzer-for-News-Dependencies GitHub Wiki
- It's easy.
- Install node.js on your system. We will also need the package manager npm, it's part of the node installation. Make sure that path variables for node + npm will be set as environment variables.
- Clone/Extract the project into your filesystem.
- cd to the project's root directory and run
npm install
from your command line. This will setup locally the node modules, that are listed in package.json. - run
npm run-script start
in the root directory. - You can switch the frontend in app.js by changing the directory
public_multi
inapp.use(express.static(path.join(__dirname, 'public_multi')))
topublic_vand
. - VAND Multi requires a Stanford Core NLP server for data preprocessing. Download it here and run the server on default port 9000:
java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9000 -timeout 15000
. - Open your browser at localhost:3000.
Alternative: Import in Webstorm + add npm run config.