Closed
Description
We currently execute synthetics journeys using NPM, but this is less than ideal. NPM is big and complex, ideally we'd just run node. It also sometimes makes network requests and is a little tricky to run in a minimal offline fashion.
Some options we could explore:
- Just using
ln -s
to install libs, but still using NPM for things to work - Combining the synthetics lib with the compiled project to form a single file of JS that node can execute
- Something else