Created
March 14, 2025 14:55
-
-
Save lynsei/fe61dc60a7b70b4242bf57ff45d06689 to your computer and use it in GitHub Desktop.
node-gist-search.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var async = require('async'); | |
var GitHubApi = require('github'); | |
var github = new GitHubApi({ | |
version: '3.0.0', | |
protocol: 'https' | |
}); | |
github.authenticate({ | |
type: 'basic', | |
username: 'user', | |
password: 'pass' | |
}); | |
async.waterfall([ | |
function (callback) { | |
github.gists.getAll({}, callback); | |
}, | |
function (gists, callback) { | |
// filter gists by properties as needed | |
async.each(gists, function (gist, callback) { | |
github.gists.delete({ | |
id: gist.id | |
}, callback); | |
}, callback); | |
} | |
], function (err) { | |
if (err) { | |
console.log('Execution failed: %s', err.message); | |
process.exit(1); | |
} | |
console.log('Done!'); | |
process.exit(0); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment