1
0
silverbullet/docs/index.md
2022-07-06 17:48:43 +02:00

3.1 KiB
Raw Blame History

Silver Bullet

Silver Bullet (SB) is a highly extensible, open source personal knowledge playground. At its core its a Markdown-based writing/note taking application that stores pages (notes) as plain markdown files in a folder referred to as a space. Pages can be cross-linked using the [[link to other page]] syntax. This makes it a simple tool for Personal Knowledge Management. However, once you leverage its various extensions (called plugs) it can feel more like a knowledge playground, allowing you to annotate, combine and query your accumulated knowledge in creative ways, specific to you.

So what is it SB really? That is hard to answer. It can do a ton of stuff out of the box, and Im constantly finding new use cases. Its like... a silver bullet!

Heres how I use it today (but this has grown significantly over time):

  • Basic note taking, e.g. meeting notes, notes on books I read, blogs I read, podcasts I listen to, movies I watch.
  • Getting a quick glance at the work people in my team are doing by pulling data from our 1:1 notes, recent activity on Github (such as recent pull requests) and other sources.
  • Writing:
    • My blog is published via SBs Ghost plugin.
    • An internal newsletter that I write is written in SB.
    • Performance reviews for my team (I work as a people manager) are written and managed using SB (for which I extensively use SBs meta data features and query that data in various ways).
  • A custom SB plugin aggregates data from our OpsGenie account every week, and publishes it to our Mattermost instance.
  • It powers part of my smart home: I wired HomeBridge webhooks up to custom HTTP endpoints exposed by my custom smart home SB plug.

Thats a pretty crazy wide range of use cases!

I know, right?

Disclaimer: Silver Bullet is under heavy development and significant changes under the hood happen constantly. Its also low on automated tests and documentation. All this will improve over time. Ill do better, I promise.

🤯 Features 💡 Inspiration 🔌 Plugs 🔨 Development 🗺 Roadmap

Proposals

Mounts

Installing and running Silver Bullet

To run a release version, you need to have a recent version of npm (8+) and node.js (16+) installed as well as some basic build infrastructure (make, cpp). Silver Bullet has only been tested on MacOS and Linux thus far.

To install and run, create a folder for your pages (can be empty or an existing folder with .md files) and run:

npx @silverbullet/server <path-to-folder>

Optionally you can use the --port argument to specify a HTTP port (defaults to 3000) and you can pass a --password flag to require a password to access. Note this is a rather weak security mechanism, so its recommended to add additional layers of security on top of this if you run this on a public server somewhere (at least add TLS). Personally I run it on a tiny Linux VM on my server at home, and use a VPN (Tailscale) to access it from outside my home.