6.2.0 • Published 2 years ago

sharepointplus v6.2.0

Weekly downloads
214
License
LGPL-3.0
Repository
github
Last release
2 years ago

SharepointPlus

Average time to resolve an issue Percentage of issues still open npm.io

SharepointPlus ($SP) is a JavaScript library which offers some extended features for SharePoint entirely on client side (requires no server install). $SP will simplify your interactions with Sharepoint.

Documentation

Browse the online documentation here.

Quick Start

Node Environment

npm install sharepointplus

Then:

import $SP from 'sharepointplus'

Please, make sure to read the documentation to optimize your bundle size.

Browser Only

To directly use it in a browser:

  <script type="text/javascript" src="//cdn.jsdelivr.net/npm/sharepointplus/browser/sharepointplus.js"></script>

Usage / Examples

Update all items with an "Amount" value bigger than 1000:

$SP().list('My List Name').update({
  Title:"Too expensive"
}, {
  where:"Amount > 1000"
})
.then(function(res) {
  alert(res.passed.length+" items successfully updated!");
});

Get all items with "Requestor" as the current user and with "Default Color" is "pink":

$SP().list('ListName').get({
  fields:"Title,Size",
  where:"Requestor = '[Me]' AND Default_x0020_Color = 'pink'",
  orderby:"Size DESC",
  json:true
})
.then(function(data) {
  data.forEach(function(d) {
    console.log("Model = "+d.Title+" (size: "+d.size+")";
  })
});

More information

Please visit the online documentation to know more.

6.2.0

2 years ago

6.1.5

3 years ago

6.1.4

3 years ago

6.1.3

3 years ago

6.1.2

4 years ago

6.1.1

4 years ago

6.1.0

4 years ago

6.0.4

4 years ago

6.0.3

4 years ago

6.0.2

4 years ago

6.0.1

4 years ago

6.0.0

4 years ago

5.2.0

5 years ago

5.1.0

6 years ago

5.0.0

6 years ago

4.0.0

7 years ago