1
0
silverbullet/README.md

74 lines
5.4 KiB
Markdown
Raw Normal View History

2022-04-21 13:04:37 +00:00
# Silver Bullet
2022-07-24 20:36:26 +00:00
Silver Bullet (SB) is an extensible, open source **personal knowledge platform**. At its core its a clean markdown-based writing/note taking application that stores your _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](https://en.wikipedia.org/wiki/Personal_knowledge_management). However, once you leverage its various extensions (called _plugs_) it can feel more like a _knowledge platform_, allowing you to annotate, combine and query your accumulated knowledge in creative ways specific to you.
2022-08-01 10:13:09 +00:00
<img src="https://github.com/silverbulletmd/silverbullet/raw/main/images/silverbullet-pwa.png" height="400"/><img src="https://github.com/silverbulletmd/silverbullet/raw/main/images/silverbullet-ios.png" height="400"/>
2022-08-01 10:07:02 +00:00
2022-07-23 18:45:42 +00:00
For more in-depth information, an interactive demo, and links to more background, check out the [Silver Bullet website](https://silverbullet.md) (published from this repos `website/` folder).
2022-04-21 13:04:37 +00:00
2022-07-23 18:45:42 +00:00
Or checkout these two videos:
2022-06-28 12:41:21 +00:00
2022-07-23 18:45:42 +00:00
* [A Tour of some of Silver Bullets features](https://youtu.be/RYdc3UF9gok) — spoiler alert: its cool.
* [A look the SilverBullet architecture](https://youtu.be/mXCGau05p5o) — spoiler alert: its plugs all the way down.
2022-06-28 12:14:15 +00:00
## Features
2022-07-23 18:45:42 +00:00
* **Free and open source**. Silver Bullet is MIT licensed.
* **The truth is in the markdown.** Silver Bullet doesnt use proprietary file formats. It keeps it data as plain markdown files on disk. While SB uses a database for indexing and caching some indexes, all of that can be rebuilt from its markdown source at any time. If SB would ever go away, you can still read your pages with any text editor.
* **One single, distraction free mode.** SB doesnt have a separate view and edit mode. It doesnt have a “focus mode.” Youre always in focused edit mode, why wouldnt you?
* **Keyboard oriented**. You can use SB fully using the keyboard, typin the keys.
* **Extend it your way**. SB is highly extensible with [plugs](https://silverbullet.md/🔌_Plugs), and you can customize it to your liking and your workflows.
2022-06-28 12:19:31 +00:00
2022-07-23 18:45:42 +00:00
## Installing Silver Bullet
To install Silver Bullet, you will need a recent version of [node.js installed](https://nodejs.org/en/) (16+) installed. Silver Bullet has only been tested on MacOS and Linux thus far. It may run on Windows as well, let me know if it does.
2022-07-18 01:32:08 +00:00
2022-07-23 18:45:42 +00:00
To install and run SB, create a folder for your pages (it can be empty, or be an existing folder with `.md` files) and run the following command in your terminal:
2022-07-18 01:32:08 +00:00
2022-07-23 18:45:42 +00:00
npx @silverbulletmd/server <path-to-folder>
2022-07-18 01:32:08 +00:00
2022-07-23 18:45:42 +00:00
This will do one of three things:
2022-06-28 12:19:31 +00:00
2022-07-23 18:45:42 +00:00
1. If you _dont have_ SB installed, it will download and run the latest version.
2. If you _already have_ SB installed, but there is a newer version available, it will offer to upgrade. Say yes!
3. If you _already have the latest and greatest_ SB installed, it will just run it.
2022-06-28 12:19:31 +00:00
2022-07-23 18:45:42 +00:00
By default, SB will bind to port `3000`, to use a different port use the `--port` flag. By default SB doesnt offer any sort of authentication, to add basic password authentication, pass the `--password` flag.
2022-06-28 12:19:31 +00:00
2022-07-23 18:45:42 +00:00
Once downloaded and booted, SB will print out a URL to open SB in your browser (spoiler alert: by default this will be http://localhost:3000 ).
2022-06-28 12:14:15 +00:00
2022-07-23 18:45:42 +00:00
#protip: If you have a PWA enabled browser (like any browser based on Chromium) hit that little button right of the location bar to install SB, and give it its own window frame (sans location bar) and desktop/dock icon. At last the PWA has found its killer app.
2022-07-10 14:56:52 +00:00
2022-07-23 18:45:42 +00:00
## Developing Silver Bullet
Silver Bullet is written in [TypeScript](https://www.typescriptlang.org/) and built on top of the excellent [CodeMirror 6](https://codemirror.net/) editor component. Additional UI is built using React.js. [ParcelJS](https://parceljs.org/) is used to build both the front-end and back-end bundles. The server backend runs as a HTTP server on node.js using express.
2022-07-10 14:56:52 +00:00
2022-07-23 18:45:42 +00:00
This repo is a monorepo using npm's "workspaces" feature. It consists of a number of npm packages under `packages`.
2022-07-10 14:56:52 +00:00
2022-07-23 18:45:42 +00:00
Requirements: node 16+ and npm 8+ as well as C/C++ compilers (for compiling SQLite, on debian/ubuntu style systems you get these via the `build-essential` package).
2022-06-28 12:14:15 +00:00
2022-07-23 18:45:42 +00:00
After cloning the repo, run the following commands to do an initial build:
2022-04-21 13:04:37 +00:00
```shell
npm install
2022-07-23 18:45:42 +00:00
npm run clean-build
2022-04-21 13:04:37 +00:00
```
2022-07-23 18:45:42 +00:00
You can then run the server in “watch mode” (automatically restarting when you change source files) with:
2022-06-28 12:14:15 +00:00
2022-07-23 18:45:42 +00:00
```shell
npm run server -- <PATH-TO-YOUR-SPACE>
```
2022-04-21 13:04:37 +00:00
2022-07-23 18:45:42 +00:00
`<PATH-TO-YOUR-SPACE>` can be any folder with markdown files (or an empty folder).
After this initial build, I generally run three commands in parallel (in separate terminals):
```shell
2022-06-28 12:14:15 +00:00
# Runs ParcelJS in watch mode, rebuilding the server and webapp continuously on change
2022-04-21 13:04:37 +00:00
npm run watch
2022-07-23 18:45:42 +00:00
# Runs the silverbullet server, restarting when changes are detected
2022-07-09 11:07:53 +00:00
npm run server -- <PATH-TO-YOUR-SPACE>
2022-07-23 18:45:42 +00:00
# Builds (and watches for changes) all builtin plugs (in packages/plugs), still requires you to run Cmd-Shift-p (Mac) or Ctrl-Shift-p (Linux, Windows) in SB to reload these plugs
2022-07-09 11:07:53 +00:00
npm run plugs
```
2022-07-23 18:45:42 +00:00
## Feedback
If you (hypothetically) find bugs or have feature requests, post them in [our issue tracker](https://github.com/silverbulletmd/silverbullet/issues). Would you like to contribute? [Check out the code](https://github.com/silverbulletmd/silverbullet), and the issue tracker as well for ideas on what to work on.