Skip to content

@pnp/sp

npm version

This package contains the fluent api used to call the SharePoint rest services.

Getting Started

Install the library and required dependencies

npm install @pnp/logging @pnp/core @pnp/queryable @pnp/sp --save

Import the library into your application and access the root sp object

import { sp } from "@pnp/sp";

(function main() {

    // here we will load the current web's title
    sp.web.select("Title").get().then(w => {

        console.log(`Web Title: ${w.Title}`);
    });
})()

Getting Started: SharePoint Framework

Install the library and required dependencies

npm install @pnp/logging @pnp/core @pnp/queryable @pnp/sp --save

Import the library into your application, update OnInit, and access the root sp object in render

import { sp } from "@pnp/sp";

// ...

public onInit(): Promise<void> {

  return super.onInit().then(_ => {

    // other init code may be present

    sp.setup({
      spfxContext: this.context
    });
  });
}

// ...

public render(): void {

    // A simple loading message
    this.domElement.innerHTML = `Loading...`;

    sp.web.select("Title").get().then(w => {

        this.domElement.innerHTML = `Web Title: ${w.Title}`;
    });
}

Getting Started: Nodejs

Install the library and required dependencies

npm install @pnp/logging @pnp/core @pnp/queryable @pnp/sp @pnp/nodejs --save

Import the library into your application, setup the node client, make a request

import { sp } from "@pnp/sp";
import { SPFetchClient } from "@pnp/nodejs";

// do this once per page load
sp.setup({
    sp: {
        fetchClientFactory: () => {
            return new SPFetchClient("{your site url}", "{your client id}", "{your client secret}");
        },
    },
});

// now make any calls you need using the configured client
sp.web.select("Title").get().then(w => {

    console.log(`Web Title: ${w.Title}`);
});

Library Topics

UML

Graphical UML diagram

Graphical UML diagram of @pnp/sp. Right-click the diagram and open in new tab if it is too small.

spacer