noogle for aux lib
Find a file
quantenzitrone d053feb59f
Some checks failed
artifact-build / build (push) Has been cancelled
build / deploy (push) Has been cancelled
replace more links to nixos with auxolotl
2026-06-22 18:02:02 +02:00
.github github/deploy: fix 2026-04-17 00:34:23 +02:00
crates pesto: return expr in case no comment can be found 2026-05-09 13:03:33 +00:00
nixPlugin pesto: document architecture & cleanup unused formats 2026-04-19 12:50:08 +02:00
pasta Merge remote-tracking branch 'upstream/main' 2026-06-22 16:07:28 +02:00
salt website: show builtins cpp implementation 2026-04-19 13:13:21 +00:00
tests update: main 2023-09-21 08:40:02 +02:00
website replace more links to nixos with auxolotl 2026-06-22 18:02:02 +02:00
.envrc INIT: first prototype of frontend 2022-11-26 10:36:08 +01:00
.gitattributes add vendor about test_assets 2024-01-07 17:20:35 +01:00
.gitignore pesto: use cargo workspaces 2026-04-24 13:38:43 +02:00
.mergify.yml ci(mergify): upgrade configuration to current format 2024-11-22 22:36:00 +01:00
Cargo.lock noogle-types: init crate for shared structs with typescript export 2026-04-24 18:35:47 +02:00
Cargo.toml noogle-types: init crate for shared structs with typescript export 2026-04-24 18:35:47 +02:00
devShell.nix pesto: merge devShell for ergonomics 2026-04-24 14:04:48 +02:00
flake.lock Merge remote-tracking branch 'upstream/main' 2026-06-22 16:07:28 +02:00
flake.nix Merge remote-tracking branch 'upstream/main' 2026-06-22 16:07:28 +02:00
LICENSE Create LICENSE 2023-01-25 16:23:32 +01:00
projects.toml Feature/monorepo (#24) 2023-02-25 13:14:40 +01:00
README.md nixpkgs: use nixpkgs as source directly 2025-08-16 12:18:28 +00:00
treefmt.toml hook legacy data in ui build 2023-11-29 21:37:07 +01:00

Noogle

Website GitHub top language GitHub Workflow Status

Noogle is a simple Nix API search engine. It lets you search Nix functions

Current Features

  • Beginners-friendly search for Nix and Nix-related functions.
    • Render documentation comments optimized for readability.
    • Search optimized for English language and Nix function-names.
  • Filter by type signatures.
    • Function types are parsed and interpreted.
  • Noogle also knows stuff that is not (yet) officially documented.
    • Types of builtins (including builtins.derivation).
    • Can be extended via markdown contributions to Noogle.
    • Always shows the latest docs based on the main branch of Nixpkgs.
  • Outputs pre-rendered static HTML that is indexable by other search engines.
  • Wasm based performant search.

Nice features

  • Detect aliases of (most) lib and builtins functions
  • Override builtins documentation by documenting their alias in nixpkgs.lib. So you don't need to change and rebuild cpp nix anymore.
  • nix and nixpkgs are updated daily. All documentation changes will be picked up just the next day.

All Indexing is done via the pasta module. PRs welcome!

Additional data - such as types of builtins - are available in salt

Contribute

Contributions are very welcome just file a PR or issue. Indexed data can be added very easily in ./pasta/src/eval.nix.

Note: Indexed data must evaluate!

Build this page

nix build .#ui

This page generates static HTML pages. One page per API function.

It automatically includes meta tags for other search engines like Google or Bing.

Searching within the page is done via pagefind which is only available in the production build.

Develop

nix develop

This command creates the node_modules directory with all needed dependencies based on dream2nix.