Skip to main content

Posts

Showing posts with the label Visual Studio Code

Create self signed SSL certificate

How to Create a Self-Signed SSL Certificate for React JS Using mkcert How to Create a Self-Signed SSL Certificate for React JS Using mkcert A self-signed certificate is a digital certificate that is created and signed by the same entity it identifies. Unlike certificates issued by trusted Certificate Authorities (CAs), self-signed certificates aren't verified by external parties. They're commonly used for local development, testing, or internal systems where the identity verification provided by a CA is not necessary. Although self-signed certificates can secure communication, they lack the third-party validation provided by CA-signed certificates, and users may encounter browser warnings when accessing websites using self-signed certificates. In this guide, we’ll walk you through the steps to create a self-signed SSL certificate for your React JS application using mkcert . Step 1: Install Chocolatey ...

Implement SPFx component with ReactJS in few Steps

Create a SharePoint Framework (SPFx) Web Part Using Visual Studio Code Create a SharePoint Framework (SPFx) Web Part Using Visual Studio Code Author: Vishal Thakur In this guide, we will walk through the process of creating a SharePoint Framework (SPFx) web part using Visual Studio Code. SPFx is a modern development model for building custom web parts and extensions for SharePoint Online and on-premises environments. It leverages client-side scripting languages like HTML and JavaScript, and supports modern JavaScript frameworks. What is SharePoint Framework (SPFx)? The SharePoint Framework (SPFx) is a page and web part model that provides full support for client-side development, easy integration with SharePoint data, and support for open-source tooling. It runs in the context of a SharePoint page and requires only client-side scripting languages to function. Prerequisites Vi...