
Security News
npm v12 Ships With Install Scripts Off by Default, Begins Deprecating 2FA-Bypass Tokens
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.
IPSQL is a decentralized database that can run in IPFS. It implements the SQL schema, data model, and query language.
This project is pre-alpha and under heavy active development. Do not use in production, breaking changes will land without notice.
The JS API is currently considered internal until the churn in the code base dies down.
This project is built using a tree building technique implemented in the chunky-trees module.
The primary way to interact with IPSQL right now is via the command line. You can install it with
npm or use npx to run it without installing locally.
$ ipsql help
ipsql [command]
Commands:
ipsql query <uri> <sql> Run IPSQL query
ipsql repl <uri> Run local REPL
ipsql create <sql> Create a new database
ipsql write <uri> <sql> Mutate an existing SQL database
ipsql import <subcommand> Import CSV files
ipsql keygen <subcommand> Generate keys for encryption
Options:
--help Show help [boolean]
--version Show version number [boolean]
INSERT INTO table_name VALUES ( 'test' )INSERT INTO table_name ( column_name ) VALUES ( 'test' )SELECT * FROM table_nameSELECT column1, column2 FROM table_nametype Column {
schema &Map
index nullable &DBIndex
}
type Columns { String: Column }
type Table struct {
columns Columns
rows nullable &SparseArray
}
type Tables { String: Table }
type Database struct {
tables Tables
}
FAQs
Decentralized SQL Database
The npm package ipsql receives a total of 40 weekly downloads. As such, ipsql popularity was classified as not popular.
We found that ipsql 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
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.

Security News
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.