## Issue Using this library under Windows (cmd) does not spawn the DynamoDB java process. ## Possible solution 1. Passing in the `shell: true` [option](https://nodejs.org/dist/latest-v10.x/docs/api/child_process.html#child_process_child_process_spawn_command_args_options) into `child_process.spawn` would execute the command in a shell. 2. Replace `child_process.spawn` with a cross platform compatible shell library such as [`shelljs`](https://www.npmjs.com/package/shelljs).