Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Brunet

masykurisyaifullahmasykurisyaifullah11 downloads

Bruno API format support view, edit, and run .bru HTTP requests in your vault.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates2

An Obsidian plugin that adds first-class support for Bruno .bru API request files. View, edit, and run HTTP requests directly inside your vault.

Features

  • Rich preview — renders .bru files as a formatted request card with method, URL, headers, query params, body, scripts, and docs
  • Run requests — send HTTP requests from within Obsidian and see the response (status, headers, body) inline
  • Collections sidebar — browse all .bru files in your vault grouped by folder, with per-file run buttons
  • Syntax highlighting — CodeMirror 6 language extension highlights .bru, .yml, and .yaml Bruno files in the editor
  • Variable support — resolves {{variable}} syntax in URLs, headers, query params, and body
  • Copy CLI command — one-click copy of the bru run command for the current file

Installation

From Obsidian Community Plugins

  1. Open Settings → Community plugins
  2. Disable Safe mode if prompted
  3. Open Browse, search for Brunet, and install
  4. Enable the plugin in Installed plugins

Manual

  1. Download main.js and manifest.json from the latest release (and styles.css if that release includes it)
  2. Copy them into your vault at .obsidian/plugins/brunet/
  3. Enable Brunet in Settings → Community plugins

Development

git clone https://github.com/msyaifullah/brunet.git
cd brunet
npm install
npm run dev

Then symlink the project folder into your vault's plugin directory and enable the plugin (replace the vault path with your own):

ln -s "$(pwd)" "$HOME/Documents/MyVault/.obsidian/plugins/brunet"

Usage

Open a request file

Click any .bru file in the file explorer. The plugin renders a preview with all request details and a Send button to execute it live.

Run a request

  • Click Send in the file preview, or
  • Use the command palette: Brunet: Run Request, or
  • Click the ▶ button next to a file in the Collections panel

The response (status code, headers, and body) appears inline below the request details. JSON responses are pretty-printed automatically.

Collections panel

Open the sidebar panel via:

  • The ribbon icon (B logo), or
  • Command palette: Brunet: Open Collections Panel

Files are grouped by folder with collapsible sections. Click a row to open the file; click ▶ to run it.

Copy CLI command

Click the Copy CLI button in the file preview to copy a bru run command for that file to your clipboard for use in a terminal.

Supported .bru syntax

Brunet parses the Bruno plain-text block format:

meta {
  name: Get Users
  type: http
  seq: 1
}

get {
  url: https://api.example.com/users
}

headers {
  Authorization: Bearer {{token}}
  Accept: application/json
}

query {
  page: 1
  limit: 10
}

body:json {
  {
    "filter": "active"
  }
}

Supported block types: meta, HTTP method blocks (get, post, put, patch, delete, head, options), headers, query, vars, body, script:pre-request, script:post-response, assert, docs.

Commands

Command Description
Brunet: Run Request Execute the active .bru file
Brunet: Open Preview Open the rich preview for the active file
Brunet: Copy CLI Command Copy bru run for the active file to clipboard
Brunet: Open Collections Panel Show the collections sidebar

Development

npm run dev      # watch mode (development build)
npm run build    # production build with type check
npm run version  # bump version in manifest.json and versions.json

Stack: TypeScript, esbuild, CodeMirror 6, Obsidian Plugin API

Releasing

Releases are automated via GitHub Actions. When a version tag is pushed, the workflow builds the plugin and creates a draft GitHub release with main.js and manifest.json attached.

Tag format: The GitHub release tag must match manifest.json version exactly (e.g. 0.3.4, not v0.3.4). Obsidian installs assets from the release with that tag. This repo sets tag-version-prefix= in .npmrc so npm version creates the correct tags.

Steps

  1. Bump the version (updates package.json, manifest.json, and versions.json, then commits and tags):

    npm version 0.3.6
    # creates tag 0.3.6 (no "v" prefix; must match manifest.json version)
    
  2. Push the commit and tag:

    git push origin main --tags
    
  3. Go to the Releases tab on GitHub, edit the draft, add release notes, and publish.

First-time setup

Enable write permissions for GitHub Actions: Settings → Actions → General → Workflow permissions → Read and write permissions.

License

MIT — see LICENSE

92%
HealthExcellent
ReviewPassed
About
View and Run Bruno API requests directly from Obsidian. Open any .bru file to see a formatted card with the method, URL, headers, params, body, and docs — then run it and inspect the response with JSON pretty-printing. A Collections sidebar lists all your .bru files with run buttons, .bru/.yml/.yaml files get syntax highlighting, and you can copy the bru run CLI command in one click.
DevelopersSidebar
Details
Current version
0.3.6
Last updated
2 days ago
Created
6 days ago
Updates
2 releases
Downloads
11
Compatible with
Obsidian 0.1.0+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Author
masykurisyaifullahmasykurisyaifullahmsyaifullah
GitHubmsyaifullah
  1. Community
  2. Plugins
  3. Developers
  4. Brunet

Related plugins

Notebook Navigator

A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.

Local REST API & MCP Server

Unlock your automation needs by interacting with your notes over a secure REST API.

Recent Files

Display a list of recently opened files.

Git

Integrate Git version control with automatic backup and other advanced features.

Claudian

Embeds Claude Code/Codex as an AI collaborator in your vault. Your vault becomes agent's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.

BRAT

Easily install a beta version of a plugin for testing.

Longform

Helps you write and edit novels, screenplays, and other long projects.

Flexplorer

Enhance the file explorer with custom sorting, pinning, and hiding.

HiNote

Add comments to highlighted notes, use AI for thinking, and flashcards for memory.

TagFolder

Show tags as folder.