Frontend Tools
Templates & Starters
Ecommerce Starter
Starter for product search powered by Algolia InstantSearch
- angular
INSTALL
1<dependency> 2 <groupId>com.algolia</groupId> 3 <artifactId>algoliasearch-scala_2.11</artifactId> 4 <version>[1,)</version> 5</dependency> 6 7// supports snapshots, sonotype, sbt
INDEX
1client.execute { 2 index into "index1" objects Seq( 3 Contact("myID1", "Jimmie", "Barninger"), 4 Contact("myID2", "Warren", "Speach") 5 ) 6}
SEARCH
1client.execute { 2 search into "myIndex" query Query( 3 query = Some("query string"), 4 attributesToRetrieve = Some(Seq("firstname", "lastname")), 5 hitsPerPage = Some(50) 6 ) 7}
Starter for product search powered by Algolia InstantSearch
Typeahead dropdown playground built with the Algolia Autocomplete library
Starter for video search powered by Algolia InstantSearch