usage
/*
Sends an email using the jwz/mailer/outlook/send library.
@param {string} sender The email address of the sender.
@param {string} password The password for the sender's email account.
@param {string} receiver The email address of the recipient.
@param {string} subject The subject line of the email.
@param {string} text The body text of the email.
*/
const sendEmail = require('jwz/mailer/outlook/send');
const sender = '[email protected]';
const password = '1234'; // Please note: storing password in plain text is insecure.
const receiver = '[email protected]';
const subject = 'Test';
const text = 'This is a test email.'; // Added some content to the body
sendEmail(sender, password, receiver, subject, text);
- note
- Using environment variables for passwords is more secure.
usage
/*
@param org = String
@param repos = Array
@param vis = String
@param token = String
*/
const buildRepos = require('jwz/github/build');
const org = 'your-org-name';
var repos = ['your-repoA', 'your-repoB'];
var vis = 'public';
const token = 'your-token';
const res = await buildRepos(org, repos, vis, token);
console.log(res);
usage
/*
@param org = String
@param repos = Array
@param token = String
*/
const deleteRepos = require('jwz/github/delete');
const org = 'your-org-name';
var repos = ['your-repoA', 'your-repoB'];
const token = 'your-token';
deleteRepos(org, repos, token)
usage
/*
@param org = String
@param repos = Array
@param collaborators = Two dimension array
@param token = String
*/
const inviteCollaboratorsToRepos = require('jwz/github/invite');
const org = 'your-org-name';
var repos = ['your-repoA', 'your-repoB'];
var collaborators = [['collaboratorA', 'collaboratorB'], ['collaboratorC', 'collaboratorD']]
const token = 'your-token';
inviteCollaboratorsToRepos(org, repos, collaborators, token);
note
- when code is running it will have output of result
usage
/*
@param org = String
@param repos = Array
@param collaborators = Two dimension array
@param token = String
*/
const removeCollaboratorsFromRepos = require('jwz/github/remove');
const org = 'your-org-name';
var repos = ['your-repoA', 'your-repoB'];
var collaborators = [['collaboratorA', 'collaboratorB'], ['collaboratorC', 'collaboratorD']]
const token = 'your-token';
removeCollaboratorsFromRepos(org, repos, collaborators, token);
usage
/*
@param org = String
@param repo = String
@param version = String
*/
const getReleaseVersion = require('jwz/github/release');
const org = 'org-name';
const repo = 'repo-name';
const version = 'version'
const release = await getReleaseVersion(org, repo, version);
console.log(`Release Name: ${release.releaseName}`);
console.log(`Release Tag: ${release.releaseTag}`);
console.log(`Release URL: ${release.releaseURL}`);
note
- return
releaseName
releaseTag
releaseURL
- This is for public organization repository
- return
Status | GitHub | GitLab | |
---|---|---|---|
owner | JetsadaWijit | JetsadaWijit | [email protected] |