This is a monorepo project for the Caravan FOSS ecosystem, built with Turborepo.
There are two primary directories for managing projects:
- apps
- packages
The main app is a webapp forked from the original Caravan project which is being re-branded as the "Caravan Coordinator". The goal is to have many more applications built within this ecosystem that can live under the caravan/apps directory.
caravan/packages
is where the utility libraries live. Their foundation are forked versions of the unchained-bitcoin
and unchained-wallets
projects. These are being re-branded for legacy support
as @caravan/bitcoin
and @caravan/wallets
but moving forward
the expectation is that they will be split up as well. For
example the psbt
module in @caravan/bitcoin
will become
@caravan/psbt
.
There are a few goals for this new conception of the "Caravan" project.
- Caravan is a familiar and trusted name in the javascript FOSS bitcoin ecosystem. Having the utility libraries that the coordinator relies on be under the same umbrella makes that relationship clearer
- Scoping libraries will help protect from supply chain attacks
- Moving the project into a monorepo will help improve and streamline the developer and deployment experience. Being able to test changes to the libraries in the coordinator immediately will create a faster feedback loop for development.
- Having tightly scoped libraries will make code easier and safer to audit and build out.
- Having a unified set of developer tooling (linting rules, deployment automation, etc.) also improves developer QoL and code reliability.
The monorepo setup should make it easier for developers to test their changes in a more realistic environment, especially when making changes to libraries that are dependencies of the coordinator.
In the caravan monorepo we use changesets
to manage versioning and releases.
A changeset will be required for PRs to be merged. Read below to learn more.
Any PR to caravan that introduces a functional change requires a changeset be submitted with it.
Simply run the following command and follow the cli instructions:
$ npm run changeset
Learn about semantic versioning if you are unsure whether your changes qualify as a patch, minor, or major change.
Pull Requests are checked for changesets by the changeset-bot.
Changesets GitHub Actions are run to create a version PR and publish on merge.
This is the recommended way by Turborepo to handle changelogs, versioning, and releases. It's designed first as a manual process, so by default it won't "yell" at you to do things correctly. This adds more flexibility over something like commitlint which can have a steep learning curve and frustrating for new contributors.
Read the documentation for adding a changeset here
And another good resource for what the workflow should look like here
A changeset is a Markdown file with YAML front matter. The contents of the Markdown is the change summary which will be written to the changelog and the YAML front matter describes what packages have changed and what semver bump types they should be
- CLI generation of new changesets
- Automated consumption of changesets to do versioning
- Detection + surfacing of changesets in PRs
Clone the repo, install all dependencies, and run dev instances of everything.
(Checkout the README for caravan/descriptors to make sure you can build the wasm dependencies.)
$ npm install turbo --global
$ git clone https://github.com/caravan-bitcoin/caravan.git
$ cd caravan
$ npm install
$ turbo run dev # or `npm run dev`
The turbo.json file is the main config for the monorepo. You can read about running tasks in Turborepo here.
Note:
After you've declared a task in turbo.json, it's up to you to implement it in your package.json manifests. You can add scripts all at once, or one workspace at a time. Turborepo will gracefully skip workspaces that don't include the task in their respective package.json manifest.
The main scripts to be run are defined in this config file:
build
, lint
, test
, and dev
.
One of the main benefits of a monorepo for this type of project is
being able to easily work with multiple dependencies you're developing
at the same time. Note for example that in the caravan/coordinator
's
package.json, the dependencies from the monorepo are referenced with
a simple *
rather than a version or repository location.
$ turbo run test:debug --scope=@caravan/bitcoin --no-deps --no-cache
- scope says you want to just run the command for that package (
@caravan/bitcoin
) --no-deps
is optional and says to skip any related packages. Without this, everything else that depends on@caravan/bitcoin
will also be run--no-cache
also optional and self-explanatory. Usually not necessary but turborepo does a lot of cacheing so good to be aware of.
The --no-deps
option highlights a lot of the benefits of the monorepo. If you make a change in one library,
anything else that relies on it should be tested to make sure they're not broken too.
If you want to break this coupling, a published package version can be referenced instead of
using *
(this is not recommended however).
Sometimes it makes sense to move code you want to share between packages into an internal package. In fact this is recommended by Turborepo.
When you're creating Internal Packages, it's recommended to create packages that have a single "purpose".
Internal packages should be added to the devDependencies
list of the packages/apps that depend on them.
This is because the bundlers (tsup by default in caravan) won't include dependencies
into the bundle
and then when the package is attempted to be installed by external downstream projects it will try
and find the internal dependency in a remote registry (which will fail). By including it in the
devDependency:
- the dependency graph will be correct
- the bundler will build it in with the final package
- other projects won't try and install the internal dependency
@caravan/multisig is an example of such a package that is depended on by other packages like @caravan/psbt and @caravan/wallets.
NOTE: Turborepo provides code generator capability
for bootstrapping a new project. You can run turbo gen
or npm run gen
from the root of the project and you will be prompted through some
bootstrapping questions.
You can keep reading this section to understand what's being built out and write a fully functioning package yourself.
packages/caravan-psbt
is a good starting point for a simple package.
Let's make a package @caravan/clients
. This is code that's being added
to caravan in this PR
but would be a good candidate for a standalone package.
- Initialize the project directory
packages/caravan-clients
cd packages/caravan-clients && npm init
package name: @caravan/clients
version: 0.0.0
description: ...
entry point: ./dist/index.js
test command: jest src
keywords: ...
author: ...
license: MIT
This will initialize a package.json for you. But we want to add a few more fields for a final version:
{
"name": "@caravan/clients",
"version": "0.0.0",
"description": "...",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "npm run build -- --watch",
"test": "jest src",
"test:watch": "jest --watch src"
},
"keywords": [
"bitcoin",
"client",
"mempool",
"blockstream",
"blockchain"
],
"author": "Buck Perley",
"license": "MIT",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@caravan/eslint-config": "*",
"tsconfig": "*"
}
}
- Install some more dependencies (from package dir):
$ npm install --save-dev typescript tsup eslint jest ts-jest
(alternatively can use the --scope
arg to target the package from the root)
- Add configs:
eslintrc.js
,tsconfig.json
,jest.config.js
:
// .eslintrc.js
module.exports = {
root: true,
extends: [
"@caravan/eslint-config/library.js"
],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
};
// tsconfig.json
{
"extends": "@caravan/typescript-config/base.json"
}
// jest.config.js
module.exports = {
preset: "ts-jest",
testEnvironment: "node"
};
- create a
src/
directory and add the entrypointindex.ts
file - add our module file(s) (e.g.
src/clients.ts
) and test file(s) (e.g.src/clients.test.ts
)- NOTE: when these files were copied over, they came from caravan when not all files were converted to typescript. A
transform
field needed to be added to the jest config as well asbabel-jest
package to handle js transformations for those older files.
- NOTE: when these files were copied over, they came from caravan when not all files were converted to typescript. A
- You should now be able to run
turbo run test --scope=@caravan/clients
andturbo run build --scope=@caravan/clients
to test and build - To start using this in another package, say
caravan-coordinator
simply add it to the package.json with a*
:
{
"dependencies": {
...,
"@caravan/clients": "*",
...,
}
}
- Run the development server with turbo:
turbo run dev
- Add to
ClientPicker/index.tsx
(as an example):
import { BlockchainClient, ClientType } from "@caravan/clients";
...
// add this function to the component and put it to use!
const getFees = async () => {
const blockchainClient = new BlockchainClient({
type: ClientType.MEMPOOL,
client,
network,
});
return await blockchainClient.getFeeEstimate(3);
};
...
- Note that now not only if you make a change to
caravan/coordinator
the changes will be reflected almost instantly in the app, but you can also make a change to the dependencies and everything will rebuild (technically turborepo only rebuilds what is necessary, caching the rest). Add a console.log to thegetFeeEstimate
in theBlockchainClient
app and see for yourself!
- you might see an error "The request '...' failed to resolve only because it was resolved as fully specified" Webpack has an issue by default resolving the built module package if the extension is not specified. You can fix this by adding the following rule to your webpack config (module.rules array):
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
},
This will usually happen if a package was written trying to do a direct import of a file from a dependency and not specifying the extension, for example:
import { reverseBuffer } from "bitcoinjs-lib/src/bufferutils";
instead of
import { reverseBuffer } from "bitcoinjs-lib/src/bufferutils.js";