
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
transfer.js
Advanced tools
Fork of transfer-sh, a CLI tool for easy file sharing with https://transfer.sh
Node.js CLI tool for easy file sharing with transfer.sh
The easiest way to get transfer.js is with npm or yarn:
$ npm install -g transfer.js
$ yarn global add transfer.js
$ transfer-js hello.txt --copy
Will return a link to the resource and copy it to your clipboard.
| Option | Description |
|---|---|
-m, --max-days | Maximum number of days the file will stay on transfer.sh. |
-M, --max-downloads | Maximum number of downloads allowed. |
-D, --download | Download the file from the given URL. |
-n, --file-name | Name to use for the upload. |
-c, --copy | Copy the file URL or path to the clipboard. |
-N, --no-progress | Don't show the progress bar. |
-o, --output | Output path of the downloaded file. |
const Transfer = require('transfer.js');
// Upload
new Transfer('./Hello.txt')
.upload().progress((prog) => {
console.log((prog.current / prog.total * 100).toFixed(1) + '%');
}).then(console.log).catch(console.error);
// Download
new Transfer('https://transfer.sh/4bcD3/Hello.txt')
.download().progress((prog) => {
console.log((prog.current / prog.total * 100).toFixed(1) + '%');
}).then(console.log).catch(console.error);
The documentation is available here.
Based on transfer-sh by roccomuso.
FAQs
Fork of transfer-sh, a CLI tool for easy file sharing with https://transfer.sh
We found that transfer.js 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.