
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/onedrive
Advanced tools
Microsoft OneDrive integration via Microsoft Graph API — browse, upload (simple + resumable), download, move/copy, create folders, share, and inspect permissions across personal and OneDrive for Business drives. Supports delegated OAuth2 access tokens (wi
OneDrive module for RobinPath.
The onedrive module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/onedrive
1. Set up credentials
onedrive.setCredentials "your-credentials"
2. listChildren
onedrive.listChildren
| Function | Description |
|---|---|
onedrive.setCredentials | Configure onedrive credentials. |
onedrive.listChildren | listChildren |
onedrive.getItem | getItem |
onedrive.getItemByPath | getItemByPath |
onedrive.createFolder | createFolder |
onedrive.deleteItem | deleteItem |
onedrive.moveItem | moveItem |
onedrive.copyItem | copyItem |
onedrive.uploadFile | uploadFile |
onedrive.downloadFile | downloadFile |
onedrive.searchFiles | searchFiles |
onedrive.createSharingLink | createSharingLink |
onedrive.listSharedWithMe | listSharedWithMe |
onedrive.getPermissions | getPermissions |
onedrive.getDriveInfo | getDriveInfo |
onedrive.listDrives | listDrives |
onedrive.getRecentFiles | getRecentFiles |
onedrive.getThumbnails | getThumbnails |
onedrive.uploadLargeFile | uploadLargeFile |
onedrive.listChildren
onedrive.getItem
onedrive.getItemByPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/onedrive";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
onedrive.setCredentials "your-credentials"
onedrive.listChildren
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/s3 — Amazon S3 module for complementary functionality@robinpath/dropbox — Dropbox module for complementary functionality@robinpath/box — Box module for complementary functionality@robinpath/google-drive — Google Drive module for complementary functionality@robinpath/json — JSON module for complementary functionalityMIT
FAQs
Microsoft OneDrive integration via Microsoft Graph API — browse, upload (simple + resumable), download, move/copy, create folders, share, and inspect permissions across personal and OneDrive for Business drives. Supports delegated OAuth2 access tokens (wi
The npm package @robinpath/onedrive receives a total of 10 weekly downloads. As such, @robinpath/onedrive popularity was classified as not popular.
We found that @robinpath/onedrive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.