Search frontend for the documentation generated by the PureScript compiler
Go to file
2021-04-20 15:10:29 +02:00
.github/workflows Fix NPM publish in CI (#50) 2021-04-20 15:10:29 +02:00
src/Docs/Search Bump version to v0.0.11 (#47) 2021-04-15 22:24:55 +03:00
test Updates for v0.14 (#46) 2021-04-15 22:15:05 +03:00
.gitignore use parcel (#13) 2019-07-25 12:49:54 +03:00
CHANGELOG.md Bump version to v0.0.11 (#47) 2021-04-15 22:24:55 +03:00
ci-npmrc.txt Fix NPM publish in CI (#50) 2021-04-20 15:10:29 +02:00
package-lock.json Switch CI to GitHub Actions (#48) 2021-04-16 21:36:51 +02:00
package.json Bump version to v0.0.11 (#47) 2021-04-15 22:24:55 +03:00
packages.dhall Updates for v0.14 (#46) 2021-04-15 22:15:05 +03:00
preview.png added: CLI interface; added: search REPL (#5) 2019-07-21 17:29:43 +03:00
README.md Clarify installation and development instructions (#36) 2020-07-08 12:17:35 +03:00
release.sh Add release script (#49) 2021-04-19 12:44:58 +02:00
spago.dhall Updates for v0.14 (#46) 2021-04-15 22:15:05 +03:00

purescript-docs-search

Build status

An app that adds search capabilities to generated documentation for purescript code.

It supports nearly-all functionality of Pursuit, including querying by type.

Installing

When using spago, you don't need to install this app manually: run spago docs or spago search.

Otherwise, use npx: npx purescript-docs-search.

Usage

There are two usage scenarios:

Patching static documentation

Use purescript-docs-search build-index command to patch HTML files located in generated-docs/html. You then will be able to search for declarations or types:

Preview

The user interface of the app is optimised for keyboard-only use.

S hotkey can be used to focus on the search field, Escape can be used to leave it. Pressing Escape twice will close the search results listing.

Using the CLI

Running purescript-docs-search within a project directory will open an interactive command-line session.

Note that unlike in Pursuit, most relevant results will appear last.

A quick demo:

asciicast

You may notice that the CLI offers slightly better results than the web interface. This is a performance tradeoff.

Development

npm install
npm run build # or build-dev to skip JS compression stage

Use spago docs --no-search && ./dist/purescript-docs-search build-index to generate the docs and patch them using the local version of the app.