You think you've seen paintings? Well you've never seen them like this before! We present "Paintings by Comparison".
Live Demo: https://adamcoscia.com/projects/Paintings-By-Comparison/
Video: https://youtu.be/6aTiNRW_now
Relax, it won't take that much time to install :)
First, clone this repo to your local machine, then move ahead.
- If you need to run different versions of Node.js in your local environment, consider installing:
- Install these BEFORE your first installation of Node.js!
- If you already have Node.js installed, look up how to remove it before getting nvm.
- Install Node.js v14.15.0 LTS and npm v6.14.8
- You can download a Node.js installer for your operating system from https://nodejs.org/en/download/
- By installing Node.js, you also get npm, which is a command line executable for downloading and managing Node.js packages.
- Check the version of Node.js and npm that you have installed by running
node -v
andnpm -v
from the command line/terminal
- Check the version of Node.js and npm that you have installed by running
- Be careful of conflicting with existing installations of Node.js on your machine! See Important Notes above.
- Open your command line/terminal and navigate to the app/ directory of this repo
- Run
npm install
- installs required libraries from package.json.
- You can now develop all your code logic! Just keep
index.html
,index.js
, andpackage.json
where they are :)
- If not already there, navigate to the app/ directory of this repo.
- Run
npm run build
in the same directory.- This should build the project to a dist/ folder in the same directory.
- Spin up a local webpage rooted in the app/ directory
- For example, if you have Python3 installed, run
python -m http.server 3000
- Once your local server is running go to your browser at https:localhost:3000
- For example, if you have Python3 installed, run
- When you want to close the server, press
COMMAND/CTRL+C
in the terminal/command window
CS 7450 Information Visualization
Georgia Institute of Technology
Dr. Alex Endert
Fall 2020
- Adam Coscia (acoscia6@gatech.edu)
- Vijay Marupudi
Thank you to Rojin Aliehyaei and Akshay Karthik for their help!
Licensed under the Apache License, Version 2.0 (Link)