├── .editorconfig ├── .gitignore ├── .release.json ├── .travis.yml ├── LICENSE ├── README.md ├── example_async.js ├── example_sync.js ├── main ├── errors │ ├── CreateFileError.d.ts │ ├── CreateFileError.js │ ├── LaunchEditorError.d.ts │ ├── LaunchEditorError.js │ ├── ReadFileError.d.ts │ ├── ReadFileError.js │ ├── RemoveFileError.d.ts │ └── RemoveFileError.js ├── index.d.ts └── index.js ├── package.json ├── src ├── errors │ ├── CreateFileError.ts │ ├── LaunchEditorError.ts │ ├── ReadFileError.ts │ └── RemoveFileError.ts └── index.ts ├── test └── spec │ └── main.spec.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/.release.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/README.md -------------------------------------------------------------------------------- /example_async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/example_async.js -------------------------------------------------------------------------------- /example_sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/example_sync.js -------------------------------------------------------------------------------- /main/errors/CreateFileError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/CreateFileError.d.ts -------------------------------------------------------------------------------- /main/errors/CreateFileError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/CreateFileError.js -------------------------------------------------------------------------------- /main/errors/LaunchEditorError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/LaunchEditorError.d.ts -------------------------------------------------------------------------------- /main/errors/LaunchEditorError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/LaunchEditorError.js -------------------------------------------------------------------------------- /main/errors/ReadFileError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/ReadFileError.d.ts -------------------------------------------------------------------------------- /main/errors/ReadFileError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/ReadFileError.js -------------------------------------------------------------------------------- /main/errors/RemoveFileError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/RemoveFileError.d.ts -------------------------------------------------------------------------------- /main/errors/RemoveFileError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/errors/RemoveFileError.js -------------------------------------------------------------------------------- /main/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/index.d.ts -------------------------------------------------------------------------------- /main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/main/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/package.json -------------------------------------------------------------------------------- /src/errors/CreateFileError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/src/errors/CreateFileError.ts -------------------------------------------------------------------------------- /src/errors/LaunchEditorError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/src/errors/LaunchEditorError.ts -------------------------------------------------------------------------------- /src/errors/ReadFileError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/src/errors/ReadFileError.ts -------------------------------------------------------------------------------- /src/errors/RemoveFileError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/src/errors/RemoveFileError.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/spec/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/test/spec/main.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkmg/node-external-editor/HEAD/tslint.json --------------------------------------------------------------------------------