├── .editorconfig ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── ask.md │ ├── report.md │ └── suggest.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── DCO ├── LICENSE ├── README.md ├── examples ├── print-command.js ├── record-to-console.js ├── record-to-file.js └── record-to-files.js ├── library └── index.js ├── node-audiorecorder.code-workspace ├── package.json ├── test ├── extra.js ├── module.js └── options.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.github/ISSUE_TEMPLATE/ask.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.github/ISSUE_TEMPLATE/report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.github/ISSUE_TEMPLATE/suggest.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/README.md -------------------------------------------------------------------------------- /examples/print-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/examples/print-command.js -------------------------------------------------------------------------------- /examples/record-to-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/examples/record-to-console.js -------------------------------------------------------------------------------- /examples/record-to-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/examples/record-to-file.js -------------------------------------------------------------------------------- /examples/record-to-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/examples/record-to-files.js -------------------------------------------------------------------------------- /library/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/library/index.js -------------------------------------------------------------------------------- /node-audiorecorder.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/node-audiorecorder.code-workspace -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/package.json -------------------------------------------------------------------------------- /test/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/test/extra.js -------------------------------------------------------------------------------- /test/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/test/module.js -------------------------------------------------------------------------------- /test/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/test/options.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedKenrok/node-audiorecorder/HEAD/yarn.lock --------------------------------------------------------------------------------