tiktok-sparo/apps/sparo
2024-03-05 09:01:35 -08:00
..
bin Remove SparoCommandSelector.ts in favor of explicit entry points 2024-02-29 22:53:06 -08:00
config feat: introduce sparo-lib 2024-02-21 11:02:36 -08:00
src Remove SparoCommandSelector.ts in favor of explicit entry points 2024-02-29 22:53:06 -08:00
.eslintrc.js Initial commit of files being released as open source 2024-02-20 21:42:28 -08:00
.npmignore Initial commit of files being released as open source 2024-02-20 21:42:28 -08:00
CHANGELOG.json Update changelogs [skip ci] 2024-03-05 09:01:33 -08:00
CHANGELOG.md Update changelogs [skip ci] 2024-03-05 09:01:33 -08:00
LICENSE Initial commit of files being released as open source 2024-02-20 21:42:28 -08:00
package.json Bump versions [skip ci] 2024-03-05 09:01:35 -08:00
README.md Merge pull request #49 from tiktok/octogonz/website-fixes2 2024-03-04 22:35:32 -08:00
tsconfig.json feat: introduce sparo-lib 2024-02-21 11:02:36 -08:00

Sparo

Is Git too slow in your frontend monorepo?

By default git clone will download every file in your Git repository, as well as the complete history of every file. For small repositories, that's no big deal. But as your monorepo accumulates projects and years of history, Git operations become slower and slower, until one day git status is taking 10 seconds or more. What to do?

Git provides these basic solutions that are easy to use in a medium sized repository:

  • Shallow clone allows cloning only a few commits, but is generally only suitable for throwaway clones such as a CI job.

  • Partial clone allows cloning without file contents (blobless clone) or even commit details (treeless clone), greatly accelerating your git clone time and allowing such details to be fetched during git checkout.

  • Large file storage (LFS) can move binary files to a separate server, downloading them on demand during checkout. Configuration of LFS is tricky however and if done incorrectly may cause worse performance.

However, achieving good performance in a large repository requires more complex Git features such as:

  • Git filesystem monitor and background maintenance are background processes that watch for changes and periodically prefetch server data. The user must manually register/unregister working directories and remember to "pause" the service when not needed.

  • Git worktrees allow multiple working directories on your computer to share a single .git folder, avoiding the cost of multiple clones. However this feature comes with awkward limitations, for example the same branch can't be checked out in two worktrees, and Git hooks are also shared.

  • Sparse checkout allows git checkout to extract a subset of files instead of the entire directory structure. Combined with partial clone, sparse checkout is the "battle axe" of Git optimization: although irrelevant projects and history will accumulate, your wait time will be proportional to the files you actually need.

How does Sparo help?

Sparo optimizes performance of Git operations for your large frontend monorepo.

Key features

  • Familiar interface: The sparo command-line interface (CLI) wrapper offers better defaults and performance suggestions without altering the familiar git syntax. (The native git CLI is also supported.)

  • A proven solution: Git provides quite a lot of ingredients for optimizing very large repos; Sparo is your recipe for combining these features intelligently.

  • Simplified sparse checkout: Work with sparse checkout profiles instead of confusing "cones" and globs

  • Frontend integration: Sparo leverages Rush and PNPM workspace configurations, including the ability to automatically checkout project dependencies

  • Dual workflows: The sparo-ci tool implements a specialized checkout model optimized for continuous integration (CI) pipelines

  • Extra safeguards: Avoid common Git mistakes such as checkouts with staged files outside the active view

  • Go beyond Git hooks: Optionally collect anonymized Git timing metrics in your monorepo, enabling your build team to set data-driven goals for local developer experience (not just CI!)

    (Metrics are transmitted to your own service and are not accessible by any other party.)

Getting started

Install the Sparo command-line

npm install -g sparo