A parser for for Reaper DAW .rpp files written in TypeScript.
The goal: facilitate JS/TS scripts and (web)apps to read the RPP file format and potentially to write back to RRP in the future as well. Stay simple and close to the RPP file structure to ensure stability with future versions of Reaper.
Features:
- Returns a a tree close to the original project file structure
- Values will be parsed as well as possible and raw values are always passed as a fallback
- Currently zero dependencies
- Output is serialisable to JSON
TODO for MVP:
- Parse more value types
- Determine best output format
- Add documentation of output
- Add CLI & documentation
- Release to NPM
WARNING:
This library is not well tested yet and may have parsing errors and deficiencies, the output format will change. Use at your own risk until v1.0.
If any feature is missing or you have other ideas, please create an issue!
Watch and build the library on change:
yarn start
This builds to /dist
and runs the project in watch mode so any edits you save inside src
causes a rebuild to /dist
.
To do a one-off build, use yarn build
.
To run jest tests, use yarn test
.
All jest options are passed on, use yarn test --watch
to run tests in watch mode.
The folder structure of the repo:
/src
/lib
util1.ts
util1.test.ts
util2.ts
util2.test.ts
index.tsx
index.test.tsx # Tests are co-located with their subjects
/test # Test fixtures and other test utils
/__fixtures__
example.rpp
.gitignore
package.json
README.md # You are here :)
tsconfig.json
size-limit
is set up to calculate the real cost of your library with yarn size
and visualize the bundle with yarn analyze
.
Two GitHub Actions are implemented:
main
which installs deps w/ cache, lints, tests, and builds on all pushes against a Node and OS matrixsize
which comments cost comparison of the library on every pull request usingsize-limit
This project was bootstrapped with TSDX.
Please see the main tsdx
optimizations docs. In particular, know that you can take advantage of development-only optimizations:
// ./types/index.d.ts
declare var __DEV__: boolean;
// inside your code...
if (__DEV__) {
console.log('foo');
}
You can also choose to install and use invariant and warning functions.