This repository is home to a variety of AppLand JavaScript/TypeScript projects. Many of our projects are standalone but depend on one another, meaning code changes can often span multiple projects. This monorepo serves to simplify the code review and publishing process across all of these projects.
Looking for the AppMap client for JavaScript? Find it here: https://github.com/getappmap/appmap-node
This project uses yarn workspaces to tie internal packages together. To get started, make sure
that yarn is installed, install the project dependencies and run an initial build.
$ npm install -g yarn
$ yarn && yarn buildTo continuously build changes, yarn run watch will run a watch server for every project that
specifies a watch script.
Each package should have a script named test. Running the following command from the root
directory will run tests in every package, and running the command from within a package directory
will run the tests for that specific package.
$ yarn test