Book Image

Oracle JET for Developers

By : Raja Malleswara Rao Malleswara Rao Pattamsetti
Book Image

Oracle JET for Developers

By: Raja Malleswara Rao Malleswara Rao Pattamsetti

Overview of this book

This book will give you a complete practical understanding of the Oracle JavaScript Extension Toolkit (JET) and how you can use it to develop efficient client-side applications with ease. It will tell you how to get your own customized Oracle JET set up. You'll start with individual libraries, such as jQuery, Cordova, and Require.js. You'll also get to work with the JavaScript libraries created by Oracle, especially for cloud developers. You'll use these tools to create a working backend application with these libraries. Using the latest Oracle Alta UI, you'll develop a state-of-the-art backend for your cloud applications. You'll learn how to develop and integrate the different cloud services required for your application and use other third-party libraries to get more features from your cloud applications. Toward the end of the book, you'll learn how to manage and secure your cloud applications, and test them to ensure seamless deployment.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Performance


Application performance plays a key role in client user experience and can be optimized by following certain standards and mechanisms, as follows:

  1. Cache optimization.
  2. Reducing the client-server calls (network traffic).
  3. Reducing the page size with caching.
  4. Reducing the request content.
  5. Optimizing the page layout.
  6. Lightweight mobile design.

Similarly, Oracle JET offers certain optimization recommendations separately for JavaScript and CSS.

JavaScript optimization techniques

The following are the optimization techniques for best JavaScript usage advised by Oracle JET:

  1. Minimize the JavaScript to the content required by a specific page.
  2. Use a minified version of JavaScript libraries.
  3. Reduce the content size to populate JavaScript.
  4. Lazy loading on initial request.
  5. Cache header usage.
  6. Payload compression.

CSS optimization techniques

The following are the optimization techniques for best CSS usage advised by Oracle JET:

  1. Minimize the CSS to the content required by a specific page.
  2. Use a minified version...