Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wlabarron/static-search

Search for static websites, powered by Cloudflare Workers and Fuse.js.
https://github.com/wlabarron/static-search

cloudflare cloudflare-workers fusejs jamstack search

Last synced: 2 months ago
JSON representation

Search for static websites, powered by Cloudflare Workers and Fuse.js.

Awesome Lists containing this project

README

        

# Static Search
This is a super simple search API for static websites. It pulls data from a JSON file, created as part of the static website's build process, and stores this search index in Workers KV. You can then query the index using GET requests.

The search is configurable and done using [Fuse.js](https://fusejs.io/), and the system runs serverlessly on [Cloudflare Workers](https://workers.cloudflare.com).

## Usage
There's probably a nice way to do this using `wrangler generate`. The following instructions are mostly notes to myself. Contributions to improve this and make it better for others are welcome, in case I never get around to it. The following assumes you're deploying the Worker on `https://yoursite/search`, which is also the URL of your search results page.

1. Structure your website data. For a Jekyll site where you're only looking to search through blog posts, this might look like the `jekyll.json` file renamed and put into your site's root. Effectively, the goal is to get everything you wish to be searchable as a big JSON array somewhere on the internet.
2. Copy `config.js.template` to `config.js`, and fill in your details.
3. Copy `wrangler.toml.template` to `wrangler.toml`, and fill in your details. You can find out more about configuring for deployment in [Cloudflare's documentation](https://developers.cloudflare.com/workers/get-started/guide#7-configure-your-project-for-deployment). Remember to [create a KV Namespace](https://developers.cloudflare.com/workers/cli-wrangler/commands#getting-started) and put the ID into the `wrangler.toml` file, with the binding `CONTENT`.
4. Deploy your updated static site and Worker.
5. As part of your static site deployment process, include a request to your Worker on the path `/refresh`, and the authentication header you set in `config.js`. For example, `curl "https://yoursite/search/refresh" --header "Authentication: Secure_Password"`. That will update the Worker's search index.
6. Build your front end. You can make search queries to your Worker at `/api?q=`, for example `curl "https://yoursite/search/api?q=installation%20instructions"` would return the results of a search for "installation instructions".

If your search results page makes use of a URL parameter named `q` for the search query, a link preload header will be added to the page. This means the API request happens (approximately) as soon as the main page starts loading, so by the time your script executes the results are probably already cached and good to go. Some front-end JavaScript to get you started:
``` js
fetch("https://yoursite/search/api?q=" + encodeURIComponent(url.searchParams.get("q")), {
credentials: 'include',
mode: 'no-cors'
})
.then(function (response) {
return response.json();
})
.then(function (results) {
// output results
})
```