
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.
Node.js library to access the Zenodo API
https://developers.zenodo.org/
In order to test the project you will have to create a .env file that contains an API key to the sandbox.
https://developers.zenodo.org/#authentication
// by default we set the host to 'sandbox.zenodo.org' so that you can easily play around with this library without damage
const zenodo = new Zenodo({ accessToken, host: 'zenodo.org' });
// retrieve the list of all the depositions
const depositions = await zenodo.listDepositions();
for (const deposition of depoositions) {
console.log(deposition);
}
// create a new deposition
const deposition = zenodo.createDeposition({
upload_type: 'dataset',
description: 'test',
access_right: 'open',
creators: [
{
name: 'test',
},
],
});
const firstDeposition = await zenodo.createDeposition(depositionMetadata);
const firstFile = new File(['Hello, world!'], 'example.txt', {
type: 'text/plain',
});
const newFile = await firstDeposition.createFile(firstFile);
const secondFile = new File(['Hello, world 2!'], 'example2.txt', {
type: 'text/plain',
});
const newFile2 = await firstDeposition.createFile(secondFile);
await firstDeposition.deleteFile(newFile.id);
await firstDeposition.deleteFile(newFile2.id);
// alternatively you can upload both files at once
await firstDeposition.createFiles([firstFile, secondFile]);
// you can also create a zip contains many files
await firstDeposition.createFilesAsZip([firstFile, secondFile], {
zipName: 'data.zip',
});
FAQs
Node.js library to access the Zenodo API
We found that zenodo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.