ws4sql
v0.17.0-dev2
Published
Install and use ws4sql with npm.
Downloads
11
Readme
ws4sql npm package
Install and use ws4sql(ite) via npm.
Installation and Usage
Globally:
npm install -g ws4sql
ws4sql --helpLocally:
npm install ws4sql
npx ws4sql --helpFrom your own javascript:
import { runWs4sql } from 'ws4sql';
const args = process.argv.slice(2);
runWs4sql(args)
.then(() => console.log('ws4sql command executed successfully'))
.catch(error => console.error('Error executing ws4sql:', error));