Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
mirror-drive
Advanced tools
Mirror a hyperdrive or localdrive into another one.
npm i mirror-drive
import MirrorDrive from 'mirror-drive'
const src = new Localdrive('./src')
const dst = new Hyperdrive(store)
const mirror = new MirrorDrive(src, dst)
console.log(mirror.count) // => { files: 0, add: 0, remove: 0, change: 0 }
for await (const diff of mirror) {
console.log(diff) /* {
op: 'add',
key: '/new-file.txt',
bytesRemoved: 0,
bytesAdded: 4
}*/
}
console.log(mirror.count) // => { files: 1, add: 1, remove: 0, change: 0 }
Another example:
const mirror = new MirrorDrive(src, dst)
console.log(mirror.count) // => { files: 0, add: 0, remove: 0, change: 0 }
await mirror.done()
console.log(mirror.count) // => { files: 1, add: 1, remove: 0, change: 0 }
const mirror = new MirrorDrive(src, dst, [options])
Creates a mirror instance to efficiently move src
drive into dst
drive.
Available options
:
{
prefix: '/',
dryRun: false,
prune: true,
includeEquals: false,
filter: (key) => true,
metadataEquals: (srcMetadata, dstMetadata) => { ... }
batch: false
}
mirror.count
It counts the total files proccessed, added, removed, and changed.
Default value: { files: 0, add: 0, remove: 0, change: 0 }
await mirror.done()
It starts processing all the diffing until is done.
MIT
FAQs
Mirror a hyperdrive or localdrive into another one
The npm package mirror-drive receives a total of 1,745 weekly downloads. As such, mirror-drive popularity was classified as popular.
We found that mirror-drive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.