
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
webapi-active-query-builder
Advanced tools
Active Query Builder Web API lets modify SQL queries for different database servers using RESTful HTTP requests.
Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
npm install webapi-active-query-builder --save
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify,
perform the following (assuming main.js is your entry file):
browserify main.js > bundle.js
Then include bundle.js in the HTML pages.
Please follow the installation instruction and execute the following JS code:
var WebapiActiveQueryBuilder = require('webapi-active-query-builder');
var api = new WebapiActiveQueryBuilder.ActiveQueryBuilderApi()
var query = new WebapiActiveQueryBuilder.SqlQuery(); // {SqlQuery} Information about SQL query and it's context.
api.getQueryColumnsPost(query).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
All URIs are relative to https://webapi.activequerybuilder.com
| Class | Method | HTTP request | Description |
|---|---|---|---|
| WebapiActiveQueryBuilder.ActiveQueryBuilderApi | [getQueryColumnsPost] | POST /getQueryColumns | |
| WebapiActiveQueryBuilder.ActiveQueryBuilderApi | [transformSQLPost] | POST /transformSQL |
All endpoints do not require authorization.
Full source code of all clients for Active Query Builder Web API is available on GitHub. Get the source code of javascript here: https://github.com/ActiveDbSoft/webapi-active-query-builder-javascript
FAQs
Active Query Builder Web API lets modify SQL queries for different database servers using RESTful HTTP requests.
The npm package webapi-active-query-builder receives a total of 0 weekly downloads. As such, webapi-active-query-builder popularity was classified as not popular.
We found that webapi-active-query-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.