
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.
SELECT, INSERT, UPDATE, and DELETE queries.
git clone https://github.com/DarkMortal/Kaizer-DB.git
cd Kaizer-DB
yarn install # or npm install
yarn start # or npm start
Install the package globally using npm:
npm install -g kaizer-db
Run the CLI from anywhere:
kaizer-db
Use Database mydb;
Create Database mydb;
Creates a folder named mydb where tables are stored as .csv files.
Create Table Warriors (Name, Attack, Defense, PowerLevel);
Creates a file named Warriors.csv with the given headers.
Show Tables;
Output:
+-------------+
| Tables |
+-------------+
| test_data |
| Warriors |
+-------------+
Total number of Tables: 2
Shows list of available csv files in the current directory which is used as the database.
Insert into Warriors (Name, Attack, Defense, PowerLevel) values (Goku, 5000, 7000, 9001), (Vegeta, 5000, 7000, 9000);
Appends records to Warriors.csv.
Select * from Warriors;
Output:
+--------+--------+---------+------------+
| Name | Attack | Defense | PowerLevel |
+--------+--------+---------+------------+
| Goku | 5000 | 8000 | 9001 |
| Vegeta | 5000 | 7000 | 9000 |
+--------+--------+---------+------------+
2 rows returned
Select Name from Warriors Where PowerLevel > 9000;
Output:
+--------+
| Name |
+--------+
| Goku |
+--------+
1 rows returned
Update Table Warriors set PowerLevel = 10000, Defense = 8000 Where Name = Goku;
Select * from Warriors;
Output:
+--------+--------+---------+------------+
| Name | Attack | Defense | PowerLevel |
+--------+--------+---------+------------+
| Goku | 5000 | 8000 | 10000 |
| Vegeta | 5000 | 7000 | 9000 |
+--------+--------+---------+------------+
2 rows returned
Delete From Warriors Where PowerLevel < 10000;
Select * from Warriors;
Output:
+--------+--------+---------+------------+
| Name | Attack | Defense | PowerLevel |
+--------+--------+---------+------------+
| Goku | 5000 | 7000 | 10000 |
+--------+--------+---------+------------+
1 rows returned
The default ordering is ascending order (asc,Asc,ASC)
The descending order can be used as (desc,Desc,DESC)
Select * from test_data order by Defense;
Output:
+--------------------+---------+---------+-------------+
| Name | Attack | Defense | PowerLevel |
+--------------------+---------+---------+-------------+
| Karin_Uzumaki | 100 | 92 | 510 |
| Jayden_Uchiha | 200 | 120 | 5000 |
| Rykon_Hayashi | 400 | 310 | 8100 |
| Arkon_Hayashi | 420 | 330 | 8000 |
| Kakarot_Uchiha | 500 | 340 | 9001 |
| Drago_Uzumaki | 460 | 350 | 8010 |
+--------------------+---------+---------+-------------+
6 rows returned
Select * from test_data where Attack > 200 order by Defense desc;
Output:
+--------------------+---------+---------+-------------+
| Name | Attack | Defense | PowerLevel |
+--------------------+---------+---------+-------------+
| Drago_Uzumaki | 460 | 350 | 8010 |
| Kakarot_Uchiha | 500 | 340 | 9001 |
| Arkon_Hayashi | 420 | 330 | 8000 |
| Rykon_Hayashi | 400 | 310 | 8100 |
+--------------------+---------+---------+-------------+
4 rows returned
Select Name, PowerLevel, Defense from test_data where Attack > 200 Order by Defense;
Output:
+--------------------+-------------+---------+
| Name | PowerLevel | Defense |
+--------------------+-------------+---------+
| Rykon_Hayashi | 8100 | 310 |
| Arkon_Hayashi | 8000 | 330 |
| Kakarot_Uchiha | 9001 | 340 |
| Drago_Uzumaki | 8010 | 350 |
+--------------------+-------------+---------+
4 rows returned
Kaizer-DB provides meaningful error messages to guide users.
Select Name, PowerLevel from Warriors Where Attack > 200 Order by Defense;
Output:
Error: Order by field needs to be included in fetch list
![]() DarkMortal |
![]() dpgaharwal |
![]() adwityac |
![]() aprajitapandeyxcghd |
![]() GauravKarakoti |
git clone https://github.com/<contributor-user-name>/Kaizer-DB.git
cd Kaizer-DB
git checkout -b feature/your-feature-name
package.json file.git add .
git commit -m "Description of your changes"
git push origin feature/your-feature-name
MIT License © 2025 DarkMortal
FAQs
A lightweight and minimal csv database package with SQL-like syntax
We found that kaizer-db demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.