
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.
node-jsondb-srv
Advanced tools
jsondb-service: Socket service to accept json database client connections and requests for the json database
Socket service for node-jsondb
node-jsondb-srv is a static TCP socket service which accepts connections on a designated port from an instance of node-jsondb-client.
'npm install node-jsondb-srv'
'./settings/settings.js'
settings = {
"host": "localhost",
"port": 10089,
"maxconnections": 200
}
'./settings/databases.js'
test:{
file: "./db/test.json",
locking: "transaction",
users:{
admin: "rw",
guest: "r"
}
}
'./settings/users.js'
users = { /* <name> : <password> */
"test" : "test",
"guest" : "",
"admin" : "admin"
}
The locking mechanism for a given database can either be via transactions, full-database locking, or disabled entirely.
locking="transaction"
With transaction locking, any updates to the database must be done with the target records locked for writing. Given that a single request/query may include multiple records, any locks or writes that fail will cause the entire transaction to be cancelled (the database retains its prior state).
locking="full"
With full locking, the entire database is locked for writing before any changes are made. This approach may be faster for situations where updates are infrequent. The process of locking individual records can slow things down.
locking=null
As the section implies, there is no locking at all. Any client can write without locking. Useful for chat room databases where you are more interested in receiving subscription updates than retaining data.
Database files are located in './db/' and are stored in '.JSON' format
'node node-jsondb-srv'
FAQs
jsondb-service: Socket service to accept json database client connections and requests for the json database
We found that node-jsondb-srv 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.