Front End for IHop
-
Download npm and node.js here: https://www.npmjs.com/get-npm
-
In your command line, navigate to the directory in which you want to work.
-
Type the following commands.
git init
git remote add origin https://github.com/build-umass/Toucan.git
git pull origin dev2
npm install
npm run dev
- Open https://localhost:3000 in your browser.
https://localhost:3000 is displayed from pages/index.js by default. We will be doing most of our work in the /pages
and /components
directories. /pages
will be explicitly for standalone pages, such as the home page, members, login, and form building pages. The /components
directory will be used to make the pieces we use inside of those pages.