Stop worrying about nightly file transfers.

One API to provision SFTP servers and transform files at the edge.
No more hacky scripts, no more flaky cron jobs, no more getting paged at midnight.

index.ts
package.json
const nightly = new Nightly();
// Create an SFTP bucket
const bucket = await nightly.buckets.create({
name: '🚀',
});
// Provision a user
const user = await nightly.users.create({
bucket_id: bucket.id,
username: 'user1',
password: '********'
});
// 🎉 Ready to receive files!
console.log(`Ready to login: sftp ${user.username}@${bucket.host}`);