A microservice API that takes a resource expected to contain a PEG grammar and returns a syntax tree for that grammar.
yarn install
yarn serve
bootstrap PEG api transforms
curl 'http://localhost:8080/api/peg/peg?src=http%3A%2F%2Flocalhost%3A8080%2Fresources%2Fpeg%2Epeg' | jq --sort-keys > ./spec/static.json
# check schemas
curl 'http://localhost:8080/api/peg/peg/schema.json'
curl 'http://localhost:8080/api/peg/peg/schema/schema.json'
yarn build
yarn test:unit
yarn lint