All Projects â†’ springload â†’ react-search-example

springload / react-search-example

Licence: other
📉📈 An example of using React with D3, Lunr.js and an autocomplete UI to build an accessible keyboard-centric search experience. Also – service workers for offline caching, and desktop app with Electron.

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects
HTML
75241 projects

Projects that are alternatives of or similar to react-search-example

vx-typescript-kitchensink
Repo to test type definitions for vx
Stars: ✭ 16 (+6.67%)
Mutual labels:  d3
Manhattan-skyscraper-explorer
Demo application for 3D building exploration in Manhattan.
Stars: ✭ 28 (+86.67%)
Mutual labels:  d3
britecharts-react
Britecharts-react is a React wrapper for the Britecharts charting library. It allows the use of Britecharts charts within a React application.
Stars: ✭ 110 (+633.33%)
Mutual labels:  d3
twic
Topic Words in Context (TWiC) is a highly-interactive, browser-based visualization for MALLET topic models
Stars: ✭ 51 (+240%)
Mutual labels:  d3
d3-gridding
grids for rapid D3 charts mockups
Stars: ✭ 100 (+566.67%)
Mutual labels:  d3
visited-countries
🌎 Countries I Have visited
Stars: ✭ 25 (+66.67%)
Mutual labels:  d3
coincharts
Cryptocurrency Price Chart (GDAX)
Stars: ✭ 75 (+400%)
Mutual labels:  d3
vueplotlib
Declarative, interactive, linked 📊📈 components
Stars: ✭ 23 (+53.33%)
Mutual labels:  d3
real-time-data-viz-d3-crossfilter-websocket-tutorial
Tutorial on real-time data visualization. Python websocket server & d3.js + crossfilter.js frontend
Stars: ✭ 32 (+113.33%)
Mutual labels:  d3
d3node-barchart
BarChart module using D3-Node
Stars: ✭ 18 (+20%)
Mutual labels:  d3
ocaml-d3
OCaml bindings for D3.js
Stars: ✭ 71 (+373.33%)
Mutual labels:  d3
k8s-graph
Visualize your Kubernetes (k8s) cluster
Stars: ✭ 23 (+53.33%)
Mutual labels:  d3
svg-time-series
SVG time-series charting library
Stars: ✭ 18 (+20%)
Mutual labels:  d3
o2d3m
Wavefront OBJ to Doom3 map converter.
Stars: ✭ 15 (+0%)
Mutual labels:  d3
secret-islands
A virtual land scuttlebutt client
Stars: ✭ 17 (+13.33%)
Mutual labels:  d3
d3-list-graph
D3 layout for a graph composed of adjacent lists of nodes
Stars: ✭ 16 (+6.67%)
Mutual labels:  d3
gatsby-plugin-lunr
Gatsby plugin for full text search implementation based on lunr client-side index. Supports multilanguage search.
Stars: ✭ 69 (+360%)
Mutual labels:  lunr
reusable-d3-charts
Reusable charts built with D3. Built on Web standards, fully customisable.
Stars: ✭ 33 (+120%)
Mutual labels:  d3
covid-19
Current and historical coronavirus covid-19 confirmed, recovered, deaths and active case counts segmented by country and region. Includes csv, json and sqlite data along with an interactive website explorer.
Stars: ✭ 15 (+0%)
Mutual labels:  d3
react-d3-integration
An example on how to integrate D3 into React
Stars: ✭ 14 (-6.67%)
Mutual labels:  d3

react-search-example

📉📈 An example of using React with D3, Lunr.js and an autocomplete UI to build an accessible keyboard-centric search experience. Also – service workers for offline caching, and desktop app with Electron. Demo

Screenshot

Head over to the Releases to download the desktop version.

Installation

You first need to clone the project on your computer, and to install Node. This project also uses nvm.

From the command-line:

cd ~/Development/sites/
git clone [email protected]:springload/react-search-example.git
cd react-example

To install our dependencies:

nvm install
npm install --global eslint eslint-plugin-react babel-eslint eslint-config-airbnb sass-lint
# Then, install all project dependencies.
npm install
# Optionally, install the git hooks.
./.githooks/deploy

Working on the project

Everything mentioned in the installation process should already be done.

# Start the server and the development tools.
npm run start
# Run the project within Electron
npm run start:electron
# Builds frontend assets.
npm run build
# Packages binaries with Electron
npm run build:electron
# Runs linting.
npm run lint
# Runs tests.
npm run test

Deploying a new version

To production (gh-pages)

# From the project's root.
# First make sure your master is up to date.
git fetch --all
git checkout master
git pull
git push origin master
# Then push the new changes
git checkout gh-pages
git merge master
npm run dist
git add .
git commit -m 'Release new version'
git push origin gh-pages
# And get back to master!
git checkout master

Documentation

This project relies on a modified version of react-autosuggest so that the suggestions are always displayed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].