The Software Engineering Club (SEC) at Stevens is creating Quick Quack, a revival of the messaging service "Yik Yak".
- Install Node.js (used to run the application locally)
- Install Git (used to interact with the Github repository)
Windows
- Login to your Github account and fork the SEC repository (the button in the top-right)
- Copy the link found by clicking the green button labelled Clone or download in your forked repository
- Create a working directory (folder) on your computer
- Right click in your folder and click Git Bash Here
- Type
git clone <link from step 2>
(This downloads the repository to your computer) - Go into the folder that appeared labelled slp-1 and open two terminals (Command Prompt: cmd)
- In one terminal, type
cd client
and the othercd server
(cd stands for change directory) - In both terminals, type
npm install
(client takes a long time -- be patient!) - Once installation is finished, you can run the application.
- Create two terminals, one in the
client
directory and one in theserver
directory - Type
npm start
in both terminals. You should see a webpage open up: this is the app!