Book Image

SharePoint Development with the SharePoint Framework

By : Jussi Roine, Olli Jääskeläinen
Book Image

SharePoint Development with the SharePoint Framework

By: Jussi Roine, Olli Jääskeläinen

Overview of this book

SharePoint is one of Microsoft's best known web platforms. A loyal audience of developers, IT Pros and power users use it to build line of business solutions. The SharePoint Framework (SPFx) is a great new option for developing SharePoint solutions. Many developers are creating full-trust based solutions or add-in solutions, while also figuring out where and how SPFx fits in the big picture. This book shows you how design, build, deploy and manage SPFx based solutions for SharePoint Online and SharePoint 2016. The book starts by getting you familiar with the basic capabilities of SPFx. After that, we will walk through the tool-chain on how to best create production-ready solutions that can be easily deployed manually or fully automated throughout your target Office 365 tenants. We describe how to configure and use Visual Studio Code, the de facto development environment for SPFx-based solutions. Next, we provide guidance and a solid approach to packaging and deploying your code. We also present a straightforward approach to troubleshooting and debugging your code an environment where business applications run on the client side instead of the server side.
Table of Contents (14 chapters)

Summary

In this chapter, we took a look at Visual Studio Code more closely. As you've seen, it's a powerful code editor and available free of charge for all major platforms, including Windows, Linux, and Mac. The main difference between VS Code and Visual Studio is that the latter has project templates, and a whole integrated development environment built-in. VS Code is mainly an editor and a good one at that, but it lacks the majority of the more enterprise-focused features you might find in Visual Studio 2015 and 2017.

VS Code is currently the best tool you have for writing code for an SPFx project. Microsoft recently released the stable version of an extension for Visual Studio that allows projects based on SPFx. This seems like a good alternative, but developers will still need to be comfortable with VS Code, as it's a tool that is widely used and Microsoft is heavily supporting VS Code-based documentation and extensions.

...