
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.
synthd-bin
Advanced tools
synthd is a CLI utility for generating test data and storing it in your
backend of choice (e.g. mongo, ES, MySQL, Postgres, etc).
The main reason to use the synthd CLI is to be able to generate test data and
store it in your backend, all from JSON files.
To install synthd as a CLI, assuming that you have node installed, you can
do:
npm i -g synthd-bin
Let's run through a first basic example of generating a document of a single type and storing it in a Mongo collection. Given this JSON file named basic.json:
{
"resources": [{
"name": "Users",
"fieldName": "users",
"fields": [{
"name": "_id",
"type": "MongoObjectID"
}, {
"name": "firstName",
"type": "FirstName"
}, {
"name": "lastName",
"type": "LastName"
}, {
"name": "email",
"type": "Email"
}, {
"name": "phoneNumber",
"type": "PhoneNumber"
}]
}],
"actions": [{
"action": "generateAndStore",
"storageBackend": "MongoistBackend",
"serializer": "JSONSerializer",
"configuration": {
"mongoURI": "mongodb://localhost:27017/users-with-mongo"
},
"generate": [{
"resource": "Users",
"collection": "users",
"count": 5
}]
}]
}
You could then run:
synthd gen run --file basic.json
Assuming you had a passwordless Mongo DB listening locally on the default Mongo port (27017), you'll see five documents in the users collection in the users-with-mongo DB. To check:
# In your shell connect to Mongo.
mongo
# Check for the desired documents.
use users-with-mongo
db.users.find({})
synthd is a quickly moving target at the moment, but we'll do our best to follow semver appropriately and try to document any migration notes as needed between major versions.
The next major areas that we're looking to develop in, and feel free to contribue to are:
synthd can generate scenario files from your DB by sampling documents).examples/json/reuse/ for an example.FAQs
synthd CLI utility
The npm package synthd-bin receives a total of 4 weekly downloads. As such, synthd-bin popularity was classified as not popular.
We found that synthd-bin 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.