2.0.0 • Published 3 years ago

sp-download v2.0.0

Weekly downloads
404
License
MIT
Repository
github
Last release
3 years ago

sp-download - Easy to use files download client library and CLI for SharePoint in Node.js

NPM

npm version Downloads Build Status Gitter chat

sp-download is a SharePoint files download library and CLI in Node.js.

Supported SharePoint versions

  • SharePoint Online
  • SharePoint 2013/2016/2019

Features

  • CLI && A library scenarios
  • Support robust authentication scenarios
  • Streaming download
    • download files of any sizes
    • no memory consumption growth

Get started

Command line (CLI)

Prerequesites

  • Node.js

Install as CLI

npm install sp-download -g

Command line (CLI) usage

sp-download --url="https://contoso.sharepoint.com/sites/site/lib/folder/file.ext" --out="./download"

or

sp-download --url="https://contoso.sharepoint.com/sites/site/lib/folder/file.ext" --out="./download/filename.ext"

Options

Print help:

sp-download -h
ShortcutOptionDescription
-V--versionoutput the version number
-u--url valuefull path to the file in SharePoint, required
-o--out valuelocal directory or path to file where downloaded file should be saved, optional, default is ./
-c--conf valuePath to private configuration file
-s--site valueSharePoint SPWeb url, optional, default is requested based on url
-d--ondemandOn-Demand auth request, optional
-l--logLevel valueLog level: Debug = 5, Verbose = 4, Info = 3 (default), Warning = 2, Error = 1, Off = 0
-h--helpoutput usage information

In Node.js applications

Install as dependency

npm install sp-download --save

or

yarn add sp-download

Minimal setup (TypeScript)

import { Download, IAuthOptions } from 'sp-download';

const authContext: IAuthOptions = {
  // ... node-sp-auth options
};

const download = new Download(authContext);

let filePathToDownload: string = 'https://contoso.sharepoint.com/sites/site/lib/folder/file.ext';
let saveToPath: string = './download';

download.downloadFile(filePathToDownload, saveToPath)
  .then((savedToPath) => {
    console.log(`${argv.url} has been downloaded to ${savedToPath}`);
  })
  .catch((error) => {
    console.log(error);
  });

Minimal setup (JavaScript)

const Download = require('sp-download').Download;

const authContext = {
  // ... node-sp-auth options
};

const download = new Download(authContext);

let filePathToDownload = 'https://contoso.sharepoint.com/sites/site/lib/folder/file.ext';
let saveToPath = './download';

download.downloadFile(filePathToDownload, saveToPath)
  .then((savedToPath) => {
    console.log(`${argv.url} has been downloaded to ${savedToPath}`);
  })
  .catch((error) => {
    console.log(error);
  });

Authentication settings

The library provides a wizard-like approach for building and managing config files for node-sp-auth (Node.js to SharePoint unattended HTTP authentication).

  • SharePoint On-Premise (2013, 2016):

    • User credentials (NTLM)
    • Form-based authentication (FBA)
    • Add-In Only permissions
    • ADFS user credentials
  • SharePoint Online:

    • User credentials (SAML)
    • Add-In Only permissions
    • ADFS user credentials

For more information please check node-sp-auth credential options and wiki pages.

2.0.0

3 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

7 years ago

0.3.4

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.5

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

1.0.0

7 years ago