An example project showing how to use Elasticsearch with React
To run this example, you will need to configure Elasticsearch to accept requests from the browser using CORS. To enable CORS, add the following to Elasticsearch's config file. Usually, this file is located near the elasticsearch executable at config/elasticsearch.yml
. source
http.cors:
enabled: true
allow-origin: /https?:\/\/localhost(:[0-9]+)?/
- Clone this repo locally (or just download and unzip it)
git clone https://github.com/scotchfield/elasticsearch-react-example.git
- Move into the project
cd elasticsearch-react-example
- Run npm install
npm install
- Run webpack (or webpack-dev-server) to build the index.js source file.
Cheers to the Angular Elasticsearch example for describing how to setup http.cors. Thanks, spalger!