Install latest flywaydb-cli as a node module
npm install @microcode/flywaydb-cliA simple script installer for flywaydb cli
```
"scripts": {
"migrate": "flyway -X -configFile=conf/flyway.conf migrate"
}``
"scripts": {
"migrate": "flyway -X -user=postgres -schemas=public,another migrate"
}
After looking into a couple other packages and having issues with JS wrappers. I decided to simply install flyway command-line tools from source and make it usage in npm.
npm i -S flywaydb-cli`
This simple installs the latest flyway command-line tools from source. All the auguments that flyway allows are available.
TODO
Maintainer/Publisher sgraham785
markgardner for the inspiration node-flywaydb
LiranBri for the updated source installer