SharepointPlus
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.
Install / Use
/learn @Aymkdn/SharepointPlusREADME
SharepointPlus
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.
Related Skills
node-connect
340.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
340.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.2kCommit, push, and open a PR
