An estimation language https://www.squiggle-language.com/
Go to file
NunoSempere 6a83554086 feat: Added notes over pdfs
as well as cleaned up the doc a bit

note: I don't really like the term "invariants"
2022-04-12 21:24:52 -04:00
.github Update CODEOWNERS 2022-04-12 15:18:35 -04:00
packages feat: Added notes over pdfs 2022-04-12 21:24:52 -04:00
.gitignore Move Playground to components 2022-04-01 11:26:26 +11:00
.parcelrc fixed parcel (rebase: fixed MC with index.ts) 2022-03-24 11:28:45 -04:00
.prettierignore Run prettier on monorepo + fix crashing playground 2022-04-12 15:41:36 +10:00
CONTRIBUTING.md Update CONTRIBUTING.md 2022-04-12 15:00:47 -04:00
flake-compat.nix Codium build almost works 2022-03-24 13:52:24 -04:00
flake.lock Codium build almost works 2022-03-24 13:52:24 -04:00
flake.nix Figured out patchelf hack for nixos users 2022-03-28 22:39:59 -04:00
LICENSE Added license 2020-02-09 22:27:55 +00:00
package.json Merge branch 'develop' into reducer-playground 2022-04-12 16:45:14 +10:00
README.md Merge branch 'develop' into reducer-playground 2022-04-12 16:45:14 +10:00
yarn.lock Bump @types/webpack from 4.41.32 to 5.28.0 2022-04-12 10:40:56 +00:00

Squiggle

Packages check npm version npm version License: MIT codecov

This is an experimental DSL/language for making probabilistic estimates. The full story can be found here.

Our deployments

Packages

This monorepo has several packages that can be used for various purposes. All the packages can be found in packages.

  • @quri/squiggle-lang in packages/squiggle-lang contains the core language, particularly an interface to parse squiggle expressions and return descriptions of distributions or results.
  • @quri/squiggle-components in packages/components contains React components that can be passed squiggle strings as props, and return a presentation of the result of the calculation.
  • @quri/squiggle-website in packages/website The main descriptive website for squiggle, it is hosted at squiggle-language.com.

The playground depends on the components library which then depends on the language. This means that if you wish to work on the components library, you will need to build (no need to bundle) the language, and as of this writing playground doesn't really work.

Develop

For any project in the repo, begin by running yarn in the top level (TODO: is this true?)

yarn

See packages/*/README.md to work with whatever project you're interested in.

codium for rescript

If you have nix installed with flakes enabled, you can build a codium in this repo for rescript development, if you don't want to pollute your machine's global editor with another mode/extension.

nix develop
codium

The nix develop shell also provides yarn.

Contributing

See CONTRIBUTING.md.