├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.txt ├── README.md ├── example ├── index-dom.js ├── index.html ├── index.js └── timbre.dev.js ├── flow-typed └── npm │ ├── babel-cli_vx.x.x.js │ ├── babel-core_vx.x.x.js │ ├── babel-eslint_vx.x.x.js │ ├── babel-loader_vx.x.x.js │ ├── babel-preset-es2015_vx.x.x.js │ ├── babel-preset-react_vx.x.x.js │ ├── babel-preset-stage-0_vx.x.x.js │ ├── eslint-config-formidable_vx.x.x.js │ ├── eslint-plugin-filenames_vx.x.x.js │ ├── eslint-plugin-import_vx.x.x.js │ ├── eslint-plugin-react_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── flow-typed_vx.x.x.js │ ├── timbre_vx.x.x.js │ ├── webpack-dev-middleware_vx.x.x.js │ └── webpack_vx.x.x.js ├── package.json ├── src ├── container.js ├── elements │ ├── base.js │ ├── eff.js │ ├── env.js │ ├── index.js │ ├── osc.js │ └── pluck.js ├── host-config.js ├── index.js ├── renderer.js └── synth-manager.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/README.md -------------------------------------------------------------------------------- /example/index-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/example/index-dom.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/example/index.js -------------------------------------------------------------------------------- /example/timbre.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/example/timbre.dev.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-core_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-loader_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-es2015_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-preset-es2015_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-react_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-preset-react_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-stage-0_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/babel-preset-stage-0_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-config-formidable_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/eslint-config-formidable_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-filenames_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/eslint-plugin-filenames_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-import_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/eslint-plugin-import_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-react_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/eslint-plugin-react_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-typed_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/flow-typed_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/timbre_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/timbre_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/webpack-dev-middleware_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/webpack-dev-middleware_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/webpack_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/flow-typed/npm/webpack_vx.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/package.json -------------------------------------------------------------------------------- /src/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/container.js -------------------------------------------------------------------------------- /src/elements/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/elements/base.js -------------------------------------------------------------------------------- /src/elements/eff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/elements/eff.js -------------------------------------------------------------------------------- /src/elements/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/elements/env.js -------------------------------------------------------------------------------- /src/elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/elements/index.js -------------------------------------------------------------------------------- /src/elements/osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/elements/osc.js -------------------------------------------------------------------------------- /src/elements/pluck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/elements/pluck.js -------------------------------------------------------------------------------- /src/host-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/host-config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/index.js -------------------------------------------------------------------------------- /src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/renderer.js -------------------------------------------------------------------------------- /src/synth-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/src/synth-manager.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-synth/HEAD/yarn.lock --------------------------------------------------------------------------------