Enterprise Technology Strategy | Cloud Architecture | Process Automation
Open-source JavaScript and Node.js packages focused on automation and integration.
Utility library for Microsoft 365 administration and automation tasks. Provides simplified interfaces for common M365 operations.
const m365 = require('m365-utils');
// Setup authentication with app registration
await m365.auth.withClientCredentials({
tenantId: 'your-tenant-id',
clientId: 'your-client-id',
clientSecret: 'your-client-secret'
});
// Get all SharePoint sites
const sites = await m365.sharepoint.getAllSites();
// Update security settings
await m365.security.enableMFA('user@example.com');
Comprehensive wrapper for Microsoft Graph API with simplified query building, batching, and authentication handling.
const { GraphClient } = require('graph-tools');
// Initialize with Azure AD app registration
const graph = new GraphClient({
auth: {
clientId: 'your-client-id',
clientSecret: 'your-client-secret',
tenantId: 'your-tenant-id'
}
});
// Get user details with expanded manager info
const user = await graph.users('john.doe@example.com')
.expand('manager')
.select(['displayName', 'jobTitle', 'department'])
.get();
Simplified Node.js toolkit for Azure resource provisioning and management with declarative configuration support.
const { AzureAutomator } = require('azure-automator');
// Initialize with service principal
const azure = new AzureAutomator({
tenantId: 'your-tenant-id',
clientId: 'your-client-id',
clientSecret: 'your-client-secret',
subscriptionId: 'your-subscription-id'
});
// Create a resource group
await azure.resourceGroups.create('my-resource-group', {
location: 'eastus',
tags: {
environment: 'development',
project: 'automation-demo'
}
});
Node.js library for executing PowerShell scripts with improved error handling and result parsing.
const { PowerShell } = require('powershell-runner');
// Create a new PowerShell instance
const ps = new PowerShell();
// Run a script with parameters
const result = await ps.run('Get-Service', {
parameters: {
Name: 'BITS',
ComputerName: 'localhost'
}
});
console.log(result.status); // Running, Stopped, etc.
// Run a script file
const scriptResult = await ps.runFile('./scripts/security-audit.ps1', {
parameters: {
ReportPath: './security-report.json'
}
});
Automating security policy enforcement across M365 services using m365-utils and graph-tools packages.
const { GraphClient } = require('graph-tools');
const m365 = require('m365-utils');
// Setup authentication
const graph = new GraphClient({...});
// Identify users without MFA
const usersWithoutMFA = await m365.security.getUsersWithoutMFA();
// Apply conditional access policies
for (const user of usersWithoutMFA) {
await graph.identityProtection.applyPolicy('RequireMFA', user.id);
await m365.notification.sendEmail({
to: user.userPrincipalName,
subject: 'MFA Requirement Notice',
body: 'Your account requires multi-factor authentication...'
});
}
Packages are designed with a focus on small, composable modules that can be used independently or combined for complex solutions.
All packages implement secure defaults, credential protection, and follow security best practices for enterprise-grade deployments.
Clear, detailed documentation with practical examples to ensure developers can quickly implement solutions.
TypeScript definitions and interfaces for improved developer experience and reduced runtime errors.
Comprehensive governance solution for Microsoft 365 environments with reporting, remediation, and compliance features.
Azure-focused extensions for the Serverless Framework to simplify cloud function deployment and management.
Simplified integration layer for OpenAI and Azure Cognitive Services with context management and prompt engineering utilities.
All packages are open-source and welcome contributions. If you're interested in contributing:
Browse the GitHub repositories for open issues labeled "good first issue" or "help wanted".
Create your own fork of the repository to work on your changes.
Once you've made your changes, submit a pull request with a clear description of the improvements.