This is a toolbox for SQLX. It contains a set of tools to help you with your SQLX project.
npm install
npm run compile
You can install this toolbox globally with the following command in the root folder:
npm install -g
or alternatively you can run it from remote with the following command:
npx sqlx-toolbox
the following command will show you the help with all the commands:
sqlx-toolbox help
sqlx-toolbox get-config -o results.json
You can also use the toolbox as a dependency in your project. You can install it with the following command:
npm install sqlx-toolbox
Then you can use it in your code like this:
import { info as getInfo } from 'sqlx-toolbox';
...
const definitionsResult = await getInfo(); // you can pass options optionally
// or with options:
const definitionsResult = await getInfo({ out: 'results.json' });
You can publish the library with the following command:
npm publish --access public
make sure you increased the version in the package.json file.