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.
- 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