/wares

Angular front-end app

Primary LanguageJavaScript

wares

This a purely front-end Angular application that uses Walmart's API to query products based on certain input parameters and then stores those results in local storage. These results are displayed in a table that you can sort and filter.

Screenshot of application

Running Locally

  • In the terminal, Change directory to the project root or public folder.
  • Serve a local http server using either python or node.
  • Then visit your browser at http://localhost:9001/.
# Node
http-server -p 9001 c-1

# Python
python -m SimpleHTTPServer 9001