Home > nodejs

Create custom Client Side Web Part using SharePoint Framework (SPFx)

Hello everyone, in the previous article we saw Modern SharePoint and Modern SharePoint vs Classic SharePoint in SharePoint Online now in this article, we will discuss the following points: Overview of SharePoint Framework (SPFx) Set up configuration Office 365 tenant app catalog site Set up configuration SharePoint Framework development environment Steps to build SharePoint client-side

This Article is TAGGED in , , , , , , , , , , , , , , . Read more

How to add external libraries and assets in SharePoint client-side web part

Hello everyone, welcome to my SPFx article series this my third article on SPFx. Here we will discuss how to add resources correctly in a client-side web part. First, we will see what kind of resources we add in a web part? Resources include images either a logo or icons, external

This Article is TAGGED in , , , , , , , , , , , , , , , , , , , , , . Read more

Deploy SPFx Client side web part in SharePoint Online

Hello everyone, in the previous article we see Client-Side Web Part using SharePoint Framework (SPFx)  now in this article, we will discuss deployment and package building solution process. Deployment Scope Before we deploy SPFx web part in SharePoint we need to choose deployment scope. There are two options are available in SharePoint are they Tenant scope Site Collection

This Article is TAGGED in , , , , , , , , , , , , , , , , , , , , , . Read more

Protractor: How to read excel file in node.js? 

To read excel file in nodejs application we required exceljs to be installed. In protractor to read excel file, we need exceljs library along with node and protractor. Here are the steps to install exceljs library. Go to the folder location where you want to install exceljs library. Type npm install exceljsand press Enter. Once

This Article is TAGGED in , , , , . Read more

Protractor: Add data in excel sheet using exceljs in node

Prerequisite:To perform write operation on excel sheet we need node application and exceljs library installed. Below is the code for different write action on excel file. Add sheet to new excel file [crayon-67370dbf82cd7796570951/] Add row in new sheet [crayon-67370dbf82cdb622475909/] Edit Existing Excel File [crayon-67370dbf82cde364781687/]

This Article is TAGGED in , , , , . Read more

Read PDF File using Protractor

Pre-requisite: To read pdf file, first we need to install pdf2json library. Step to install pdf2json Prerequisite : System should have nodejs Installed. Open COMMAND prompt and go to directory . Write npm i pdf2json  and press enter. Once library is installed you will see below screen   Below is the code which shows how to read PDF

This Article is TAGGED in , , , , . Read more