At 1984 we believe SAFEs should be easy to understand and model, and the tools for that should be open source, well-tested, and easy for anyone to use. Currently the best we have are either some aging Excel spreadsheets that get passed around, or a fairly rudimentary webapp.
The goal of this repository is to provide a tool for startup founders to quickly understand the decisions they make with regards to financing, especially at the SAFE round.
Our primary project is the Cap Table Worksheet Tool, which you can find on our website at https://1984.vc/docs/cap-table-worksheet/
This app is 100% client-side, and allows you to quickly model what your Cap table would look like in a variety of scenarios.
Goals:
- Users should be able to enter in their cap table details and model different fundraising scenarios.
- Users can share this cap table with co-founders and investors easily and securely.
To share your worksheet, click the "Save" button and copy the URL. This contains all your cap table data, so you can share it freely with co-founders or other investors.
We don't store any data in the backend. Instead we serialize the state of the worksheet and hold it in the URL hash. This allows you to quickly share a spreadsheet, without worrying about permissions (people you share this with get a snapshot of the current state but won't recieve updates)
If you're more comforable with a spreadsheet, we offer this script as a Google Apps Script, which you can use here:
Latest SAFE Conversion Google Sheet
- Clone the repo
- Install node modules -
yarn install
- Run the development server -
yarn dev
- Visit the localhost server at http://localhost:3000/startup-finance/safe-conversion
This library is tested using Jest, which you can run with yarn test
ESLint is used to keep the styling and lint for common errors, run lint with yarn run lint
Any commits push to staging will automatically get deployed to our staging worksheet, which you can find here
Process:
- Update the version in
package.json
- Update
CHANGELOG.md
to reflect the latest additions and changes - Tag the release vX.X.X and push to Github.
Github Actions handle the deployment, which consists of the following steps
- Lint
- Test
- Build
- Deploy via the Google Clasp CLI
The code located at src/library
is licensed under MIT, feel free to do with it as you please. Because the React app is very styled to the 1984 brand we are not licensing it, but providing the code as open source in order to build trust.
If you run into any issues, please feel free to open a ticket (or better yet, a PR), and we'll look into it.
This project builds off the work of others. Credit where credit is due.
- Ian Sanders (@iansan5653) For creating his Google App Script Template which this is based on.
- Eric Anastas (@ericanastas) For the Google Apps Script Github Action