Book Image

Learning Salesforce Lightning Application Development

By : Mohit Shrivatsava
Book Image

Learning Salesforce Lightning Application Development

By: Mohit Shrivatsava

Overview of this book

Built on the Salesforce App Cloud, the new Salesforce Lightning Experience combines three major components: Lightning Design System, Lightning App Builder, and Lightning Components, to provide an enhanced user experience. This book will enable you to quickly create modern, enterprise apps with Lightning Component Framework. You will start by building simple Lightning Components and understanding the Lightning Components architecture. The chapters cover the basics of Lightning Component Framework semantics and syntax, the security features provided by Locker Service, and use of third-party libraries inside Lightning Components. The later chapters focus on debugging, performance tuning, testing using Lightning Testing Services, and how to publish Lightning Components on Salesforce AppExchange.
Table of Contents (22 chapters)
Title Page
PacktPub.com
Foreword
Contributors
Preface
Index

Metadata API commands


If you have been working with the Salesforce platform, you will already be aware that the Metadata API format is used for the deployment of code and configuration from one Salesforce instance to another.

Salesforce DX has a different folder format than the Metadata API format. The Salesforce DX force Metadata API commands allow you to convert the Metadata API file format into the Salesforce DX format for development, and also provides a command to deploy file representations into your production Orgs or package Orgs for ISV applications.

mdapi:convert and mdapi:retrieve

Metadata API commands allow you to convert the retrieved source code from the Metadata API to the Salesforce DX project format. To retrieve the source code from your Org, you can use mdapi:retrieve

If you already have an unmanaged package, managed package, or existing source code in your Orgs, you can use mdapi:retrieve to retrieve them to a ZIP format and then use mdapi:convert to convert them to DX format...