This is a simple Angular app that allows users type a hex code (e.g. #ffa500) or a color word (e.g. orange) into a textbox, and the color will be displayed next to the textbox.
- You will need to install Node and NPM on your machine:
https://nodejs.org/en/1 - Once you've Node installed, you will need to install Bower CLI by typing:
npm install -g bower - Once you've Node installed, you will need to install Gulp CLI by typing:
npm install --global gulp-cli
- Copy the Git repo address to your clipboard.
https://github.com/smiams/color-picker.git - Open up a Terminal window on your machine and navigate to a directory where you'd like to download this project.
- Clone the repo onto your machine by typing:
git clone https://github.com/smiams/color-picker.git - Navigate to the project's directory by typing:
cd color-picker - Install the NPM modules by typing:
npm install - Install the Bower packages by typing:
bower install - Launch and serve-up the application by typing:
gulp - Open a web browser window, and navigate to
localhost:8080