All Projects → Aymkdn → Sharepointplus

Aymkdn / Sharepointplus

Licence: lgpl-3.0
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.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Sharepointplus

Spgo
SPGo: A Lightweight, Open Source, SharePoint IDE for Visual Studio Code
Stars: ✭ 52 (-72.04%)
Mutual labels:  sharepoint
Sp Client Custom Fields
Web Site: https://oliviercc.github.io/sp-client-custom-fields
Stars: ✭ 96 (-48.39%)
Mutual labels:  sharepoint
Autospinstaller
Automated SharePoint 2010/2013/2016/2019 PowerShell-based installation script.
Stars: ✭ 143 (-23.12%)
Mutual labels:  sharepoint
Cyberduck
Cyberduck is a libre FTP, SFTP, WebDAV, Amazon S3, Backblaze B2, Microsoft Azure & OneDrive and OpenStack Swift file transfer client for Mac and Windows.
Stars: ✭ 1,080 (+480.65%)
Mutual labels:  sharepoint
Awesome Sharepoint
A collection of awesome libraries, tools, frameworks and software for SharePoint
Stars: ✭ 91 (-51.08%)
Mutual labels:  sharepoint
Node Sp Auth
Unattended SharePoint http authentication with nodejs
Stars: ✭ 108 (-41.94%)
Mutual labels:  sharepoint
Foundationsync
Synchronize User Profiles with Active Directory in SharePoint Foundation
Stars: ✭ 21 (-88.71%)
Mutual labels:  sharepoint
Pnp
SharePoint / Office 365 Developer Patterns and Practices - Archived older solutions. Please see https://aka.ms/m365pnp for updated guidance
Stars: ✭ 1,857 (+898.39%)
Mutual labels:  sharepoint
Onemanager Php
An index & manager of Onedrive based on serverless. Can be deployed to Heroku/Glitch/SCF/FG/FC/CFC/PHP web hosting/VPS.
Stars: ✭ 1,313 (+605.91%)
Mutual labels:  sharepoint
Spmeta2
SharePoint artifact provision for .NET platform. Supports SharePoint Online, SharePoint 2019, 2016 and 2013 via CSOM/SSOM.
Stars: ✭ 135 (-27.42%)
Mutual labels:  sharepoint
Sp Rest Explorer
Source code for SharePoint REST API Metadata Explorer
Stars: ✭ 67 (-63.98%)
Mutual labels:  sharepoint
Cve 2019 0604
cve-2019-0604 SharePoint RCE exploit
Stars: ✭ 91 (-51.08%)
Mutual labels:  sharepoint
Spcb
The SharePoint Client Browser (SPCB) uses the CSOM to connect to a remote SharePoint site collection and shows the site structure with related properties and values.
Stars: ✭ 125 (-32.8%)
Mutual labels:  sharepoint
Poshmon
A PowerShell-based server and farm monitoring solution
Stars: ✭ 54 (-70.97%)
Mutual labels:  sharepoint
Sp Rest Proxy
🌐 SharePoint REST API Proxy for local Front-end development tool-chains
Stars: ✭ 147 (-20.97%)
Mutual labels:  sharepoint
Ldapcp
This claims provider connects SharePoint 2019 / 2016 / 2013 with Active Directory and LDAP servers to enhance people picker with a great search experience in federated authentication (typically ADFS)
Stars: ✭ 48 (-74.19%)
Mutual labels:  sharepoint
Shareplum
Pythonic SharePoint
Stars: ✭ 106 (-43.01%)
Mutual labels:  sharepoint
Cmissync
Synchronize content between a CMIS repository and your desktop. Like Dropbox for Enterprise Content Management!
Stars: ✭ 153 (-17.74%)
Mutual labels:  sharepoint
Generator Spfx
Open-source generator to extend the capabilities of the Microsoft SPFx generator
Stars: ✭ 150 (-19.35%)
Mutual labels:  sharepoint
Sp Dev Modernization
All modernization tooling and guidance
Stars: ✭ 128 (-31.18%)
Mutual labels:  sharepoint

SharepointPlus

Average time to resolve an issue Percentage of issues still open

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].