1.2.3 • Published 21 days ago

sp-js-provisioning v1.2.3

Weekly downloads
7
License
MIT
Repository
github
Last release
21 days ago

sp-js-provisioning version

Description

This project is a SharePoint provisioning tool that uses the SharePoint Framework (SPFx) and Patterns & Practices (PnP) to provision SharePoint sites. It includes various handlers for provisioning different SharePoint components such as files, custom actions, and more.

Installation

To install the project, you need to have Node.js and npm installed on your machine. After that, you can clone the repository and install the dependencies:

git clone git://github.com/Puzzlepart/pnp-js-provisioning
cd pnp-js-provisioning
npm install

Usage

Add the npm packages to your project

npm install sp-js-provisioning --save

Here is an example of how you might define navigation in a provisioning template, first in XML and then in JSON (used by sp-js-provisioning).

XML:

<pnp:Navigation>
  <pnp:CurrentNavigation NavigationType="Structural">
    <pnp:StructuralNavigation RemoveExistingNodes="true">
      <pnp:NavigationNode Title="Home" Url="{site}" />
      <pnp:NavigationNode Title="About" Url="{site}/about" />
    </pnp:StructuralNavigation>
  </pnp:CurrentNavigation>
</pnp:Navigation>

JSON:

{
  "Navigation": {
    "CurrentNavigation": {
      "NavigationType": "Structural",
      "StructuralNavigation": {
        "RemoveExistingNodes": true,
        "NavigationNode": [
          {
            "Title": "Home",
            "Url": "{site}"
          },
          {
            "Title": "About",
            "Url": "{site}/about"
          }
        ]
      }
    }
  }
}

Contributing

Contributions are welcome. Please open an issue or submit a pull request on the GitHub repository.

1.2.3

21 days ago

1.2.2

2 months ago

1.2.0

9 months ago

1.2.1

9 months ago

1.2.0-beta.1

9 months ago

1.2.0-beta.3

9 months ago

1.2.0-beta.2

9 months ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

2 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.11.3

5 years ago

0.11.2

5 years ago

0.11.1

5 years ago

0.11.0

5 years ago

0.10.7

5 years ago

0.10.6

5 years ago

0.10.5

5 years ago

0.10.4

5 years ago

0.10.3

5 years ago

0.10.2

5 years ago

0.10.1

5 years ago

0.10.0

5 years ago

0.9.31

5 years ago

0.9.30

5 years ago

0.9.29-8

5 years ago

0.9.29-7

5 years ago

0.9.29-6

5 years ago

0.9.29-5

5 years ago

0.9.29-4

5 years ago

0.9.29-3

5 years ago

0.9.29-2

5 years ago

0.9.29-1

5 years ago