
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.
@lpgroup/import-cli
Advanced tools
Cli command that imports data into rest api, RabbitMQ server and NATS.
Cli command that imports data into rest-api, RabbitMQ and NATS.
Installation of the npm
npm install @lpgroup/import-cli
.import.json
{
"environments": {
"default": {
"http": {
"server": "https://api.thecatapi.com/v1/",
"user": "",
"password": "",
"readyServer": "https://api.thecatapi.com/",
"headers": { "x-api-key": "446825e1-284d-4d4d-8fc7-7556636211ad" }
},
"nats": {
"uri": "nats://localhost:4222",
"queue": "import-js",
"messagePrefix": "int",
"version": "v2"
},
"rabbitmq": {
"uri": "amqps://user:password@xxxx.cloudamqp.com/user",
"queue": "dev"
}
}
},
"requiredKeys": ["owner", "added", "changed", "url"],
"ignoreKeyCompare": ["_id", "owner", "added", "changed", "url"]
}
Add the following to import/10-votes.js.
import { axios } from "@lpgroup/import-cli";
export default async () => {
return axios().then(async (ax) => {
await ax.post(
"/votes",
{
image_id: "good-cat",
sub_id: "my-user-1234",
value: 1,
},
{
expected: {
image_id: "good-cat",
sub_id: "my-user-1234",
value: 1,
},
noArraySort: true,
ignoreError: false,
ignoreKeyCompare: ["_id"],
requiredKeys: ["changed"],
},
);
});
};
| Keys | Type | Description |
|---|---|---|
| noArraySort | boolean | |
| ignoreError | boolean | |
| ignoreKeyCompare | array | |
| requiredKeys | array | |
| expected | object | compares expected and actual response |
| expectedFile | string | /expected/testFileName/{expectedFile}-method-expected |
| writeRequest | boolean/false | expectedFile, will write the request if has diff |
| writeDiff | boolean/false | expectedFile, will write if has diff |
| writeOriginal | boolean/true | expectedFile, will write original, if has diff, |
Add the follwing script to package.json.
{
"scripts": {
"import": "import-cli -v -e default -w import/"
}
}
Run script from command line.
npm run import -- -i 10-votes
yarn jest -- import-cli
yarn workspace @lpgroup/import-cli lpimport
See contribute
MIT - See licence
FAQs
Cli command that imports data into rest api, RabbitMQ server and NATS.
We found that @lpgroup/import-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.