npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-evraz-sharepoint

v0.2.20

Published

n8n community node for SharePoint integration - manage files and folders

Readme

n8n SharePoint Node

Custom n8n node for SharePoint file management integration. Enables workflows to list files, upload, download, and manage folders in SharePoint similar to the standard S3 node functionality.

Features

  • List Files - Get files and folders from SharePoint locations
  • Upload File - Upload files to SharePoint
  • Download File - Download files from SharePoint
  • Delete File - Remove files or folders
  • Copy File - Copy files between locations
  • Move File - Move files to different folders

Installation

cd components
npm install

Development

Start n8n with automatic node reload:

npm run dev

The node will be available at http://localhost:5678

Building

Compile TypeScript to JavaScript:

npm run build

Output is placed in the dist/ folder.

Structure

components/
├── nodes/SharepointFileManager/
│   ├── SharepointFileManager.node.ts   # Main node implementation
│   ├── GenericFunctions.ts             # Helper functions
│   └── types.ts                        # TypeScript interfaces
├── credentials/
│   └── SharepointApi.credentials.ts   # Authentication setup
├── icons/
│   └── evraz.svg                 # Node icon
└── index.ts                            # Package exports

Usage

  1. Create a new workflow in n8n
  2. Add the "SharePoint File Manager" node
  3. Configure credentials (Site URL, authentication type)
  4. Select operation (list, upload, download, delete, copy, move)
  5. Configure operation parameters
  6. Execute workflow

API Reference

Uses Microsoft Graph API v2.0 for SharePoint operations.

Key endpoints:

  • GET /me/drive/root/children - List files
  • PUT /me/drive/root:/{path}:/content - Upload file
  • GET /me/drive/root:/{path}:/content - Download file
  • DELETE /me/drive/root:/{path}: - Delete file
  • POST /me/drive/root:/{path}:/copy - Copy file
  • PATCH /me/drive/root:/{path}: - Move file

Authentication

The node supports three authentication methods:

  • OAuth 2.0 (recommended)
  • Basic Auth
  • API Key

Notes

  • Requires SharePoint Online access
  • File paths use forward slashes (e.g., /Shared Documents/folder/file.pdf)
  • Large file uploads may require chunked upload API