
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
sql-cli-repl
Advanced tools
A NodeJS-based SQL command line interface which is just what you need when you don't want to install an SQL client locally.
This package lets you connect to any SQL server* and execute queries. Query results are stored in a JS VM context which you're then able to manipulate.
* Interchangeable drivers not yet available. Maybe you can help flesh a generic class out?
This package will soon be renamed to
sqlcli-replin the NPM registry, so try that too!
$ npm install -g sql-cli-repl
This package is intended to be installed globally because the idea is that it can replace all those other SQL Clients you might need, but it might be worthwhile to install it locally as a devDependency as well!
$ npm install --save-dev sql-cli-repl
Open a connection using a URI or through args
$ sqlcli mysql://user:pass@localhost:3306/myDB
OR
$ sqlcli -d mysql -u user -p pass -h localhost -p 3306 -b myDB
OR
$ sqlcli -v SQL_URL -e ./.env # sqlcli -ve does the same thing!
Find out more help using sqlcli --help or sqlcli -h
Execute typical SQL queries:
user@localhost> SELECT 1 AS `One`, 2 AS `Two`;
|-----|-----|
| One | Two |
|-----|-----|
| 1 | 2 |
|-----|-----|
Execute multi-line SQL queries:
user@localhost> SELECT
... 3 AS `Three`,
... 4 AS `Four`
... ;
|-------|------|
| Three | Four |
|-------|------|
| 3 | 4 |
|-------|------|
Interact with the sqlcli environment:
user@localhost> /prompt sql
sql> /clear
sql> /prompt $reset
user@localhost>
Execute JS on results:
user@localhost> SELECT 1 AS `One`, 2 AS `Two`;sh
user@localhost> >$0
[
{
"One": 1,
"Two": 2
}
]
There are three (point one) types of commands that this CLI can recognise:
All SQL commands are piped directly to the SQL server taht you connect to. This means that any command that you can run on an SQL server is a viable option here.
All SQL commands must terminate with a ;, just like how you would when executing SQL commands in a script file. The only exception to this is when you want to suppress output.
Example:
user@localhost> SELECT 1 AS `One`, 2 AS `Two`;
|-----|-----|
| One | Two |
|-----|-----|
| 1 | 2 |
|-----|-----|
user@localhost>
Terminating an SQL command with ;sh (remember 🤫) will suppess the output. Everything else about the way this command works is identical to a normal SQL command.
Example:
user@localhost> SELECT 1 AS `One`, 2 AS `Two`;sh
user@localhost>
App commands allow you to interact directly with the application, such as modifying the prompt or clearing the screen, but it also lets you modify settings. These commands start with a / to denote that the following instructions should be handled by the application.
All available commands:
/dump [?tables...]
/connect [driver] [user] [pass] [host] [?port]
/connectu [uri]
/connecte [variable] [?dotenvFile]
/disconnect
/prompt [?prompt]
$config values or be $reset to reset./set [?setting] [?values...]
raw active -- Gets the raw active settingraw active [on/off] -- Sets the raw active setting to on or offraw mode -- Gets the raw mode setting. Returns the value nameraw mode [value] -- Sets the raw mode setting. Value must be a string
values - Values Only (default)schema - Schema Onlyall - Values and Schemanesttables -- Gets the nest tables prefixnesttables [prefix] -- Sets the nest tables prefix. Useful for removing colliding column names.
$reset to reset to null./clear
/commands
/help [?command]
/exit
SIGINT)JS commands/instructions allow you to interact with the results of a query, such as getting the JSON of a response, or its schema, or operating directly on the results and saving them to other variables for later use. These commands start with a > to denote that the following instructions should be handled by the JS VM context.
Additionally, there are some global variables that allow you to retrieve past results:
$ - Array - Returns an array of the last results received, with the latest response at index 0.$0 - Array - Returns the result of the last query executed. An alias for $[0]. To get individual results, use $0[i] where i is the row of the returned result.$$ - Array - Returns an array of the schemas for the last results received, with the latest response at index 0.$$0 - Array - Returns the schema for the last result received. An alias for $$[0].There are two ways to contribute: to the project, or by developing a new driver. Submit an issue, submit a PR, submit a suggestion!
Drivers are coming soon! The information below is completely false for now. This is just here to give a heads up and to remind me that this actually needs to get done at some point!
This tool works by using requireg to require modules following the format of sql-cli-driver-[protocol] (eg: sql-cli-driver-mysql, or sql-cli-driver-sqlite). If you're contributing a driver, it must expose particular methods to allow this CLI REPL tool to interact with it.
There is a template GitHub repo which has all the instructions and requirements that you need to ensure for driver.
| Database | Driver |
|---|---|
| MySQL | https://github.com/TheBrenny/sql-cli-driver-mysql |
| SQLite | https://github.com/TheBrenny/sql-cli-driver-sqlite |
MIT
FAQs
A small and simple MySQL CLI to connect to MySQL Database instances.
The npm package sql-cli-repl receives a total of 3 weekly downloads. As such, sql-cli-repl popularity was classified as not popular.
We found that sql-cli-repl 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.