siteUrl - SharePoint site (SPWeb) url [string, required]
creds
username - user name for SP authentication [string, optional in case of some auth methods]
password - password [string, optional in case of some auth methods]
Additional authentication options:
Since communication module (sp-request), which is used in sppurge, had received additional SharePoint authentication methods, they are also supported in sppurge.
const { Delete } = require('sppurge');
const context = { /* auth context */ };
const sppurge = new Delete();
sppurge.deleteFolder(context, '/sites/site/folder/repative/path')
.then(deletionResults => {
console.log('A folder has been deleted');
})
.catch(err => {
console.log('Core error has happened', err);
});
Within Gulp task
const gulp = require('gulp');
const watch = require('gulp-watch'); // Allows more than gulp.watch, is recommended
const spsave = require('gulp-spsave'); // Optional SPSave, but what is the reason to use SPPurge without SPSave?
const sppurge = require('sppurge').default;
const path = require('path');
const config = require('./gulp.config'); // Getting settings for SPPurge and SPSave
gulp.task('watch-assets', () => {
return watch(config.watch.assets, function (event) {
// Base local folder path, e.g. 'src' from which
// project's files are mapped to SharePoint folder
var watchBase = config.watch.base;
// When file is deleted event value is "unlink"
if (event.event === 'unlink') {
var sppurgeOptions = {
folder: config.sppurge.options.spRootFolder,
filePath: path.resolve(event.path).replace(path.resolve(watchBase), '')
};
// OR:
// const sppurgeOptions = {
// folder: config.sppurge.options.spRootFolder,
// localFilePath: event.path,
// localBasePath: watchBase
// };
sppurge(config.sppurge.context, sppurgeOptions)
.then(res => console.log(`File has been deleted: ${res}`))
.catch(err => console.log('Error', err.message));
} else {
// Saving files to SharePoint
gulp.src(event.path, {
base: watchBase
}).pipe(
spsave(
// SPSave's core options, see more in spsave documentation
config.spsave.coreOptions,
// node-sp-auth / spsave credential object
config.spsave.creds
)
);
}
});
});
Create React App usage scenario
Delete JS's build folder then upload all files from/build folder
One of the architectural decision in CRA is using hashes as a part of assets filenames. This allows avoiding issues related to browser cache. However, it can be challenging in term of deployment to SharePoint assets folders, as all filenames are different on each build. The further sample shows a simple use case approach of deleting files based on folder and name pattern.