Posts

Showing posts from April, 2018

SharePoint Framework Development - Create List CRUD webpart Using PnP JS

Image
We can seamlessly integrate PnP JS file with SharePoint. The new Patterns and Practices JavaScript Core Library was created to help developers by simplifying common operations within SharePoint. Currently it contains a fluent API for working with the full SharePoint REST API as well as utility and helper functions. We can use them with SharePoint Framework to work with SharePoint with minimal effort. You can get detailed information and documentation about PnP JS from  here .  This  is a continuation post in the SharePoint Framework Development series, In a previous  article , we saw how to set up the development environment for SharePoint Framework. We also saw the basic  Hello World  web part creation and  how to provision SharePoint List with custom Site Columns and Content Type  here . In this section, we will see how to create a webpart that does Create/Read/Updated/Delete operations against SharePoin...