Skip to content

ulab-uiuc/CS598

Repository files navigation

CS598: Deep Learning with Graphs

This is a repository for the website of CS598: Deep Learning with Graphs at University of Illinois at Urbana-Champaign, instructed by Prof. Jiaxuan You. The website is developed with node.js.

Install

  • Install node.js. For Mac users, run the following code in your terminal.
# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
# download and install Node.js (you may need to restart the terminal)
nvm install 21
# verifies the right Node.js version is in the environment
node -v
# verifies the right npm version is in the environment
npm -v
  • Install dependencies. Enter the root directory and run the following code in your terminal.
npm install

Develop

  • To change the content of different sessions, edit the code in src.
  • To start a server in the developing environment, run the following code. In default settings, we can browse the website at http://localhost:3000/CS598/.
npm start

Deploy

npm run deploy