Foam

Contribution Guide

[todo] [good-first-task] This contribution guide itself could be improved 😅

Foam is open to contributions of any kind, including but not limited to code, documentation, ideas, and feedback. Here are some general tips on how to get started on contributing to Foam:

Contributing to the VS Code Extension

If you’re interested in contributing to the VS Code extension (aka foam-vscode), this guide will help you get things set up locally.

  1. Clone the repo locally:

    git clone https://github.com/foambubble/foam.git

  2. Install the necessary dependencies by running this command from the root:

    yarn install

  3. This project uses Yarn workspaces.foam-vscode relies on foam-core. This means we need to compile it before we do any extension development. From the root, run the command:

    yarn workspace foam-core build

  4. Now we’ll use the launch configuration defined at .vscode/launch.json to start a new extension host of VS Code. From the root, or the foam-vscode workspace, press f5.
  5. In the new extension host of VS Code that launched, open a Foam workspace (e.g. your personal one, or a test-specific one created from foam-template). This is strictly not necessary, but the extension won’t auto-run unless it’s in a workspace with a .vscode/foam.json file.
  6. Test a command to make sure it’s working as expected. Open the Command Palette (Ctrl/Cmd + Shift + P) and select “Foam: Update Markdown Reference List”. If you see no errors, it’s good to go!

For more resources related to the VS Code Extension, check out the links below: