This sample app uses vue-graph-template template along with a json
file containing a list of amazon products. SEARCHES: BOOKS
LINK : https://ngraph-amazon.herokuapp.com/#?q=books
The app listens for the CORE::NODE_SELECTED
and CORE::NODES_UPDATE
events emmitted by the main component to display a
list of Amazon products
mounted() {
EventBus.$on("CORE::NODES_UPDATE", NODES => {});
EventBus.$on("CORE::NODE_SELECTED", selected_node => {});
}
npm install
npm run build
npm run start
App should be running in http://localhost:5000