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

Version migration with Oracle JET


Oracle JET has released version 4.0.0 with the DOM syntax for defining all JET UI components in an HTML page, including the @oracle/ojet-cli Oracle JET command-line interface. This means that the usage of Yeoman and Grunt builds are optional now.

However, upgrading an existing JET application to v4.0.0 does not require you to move to the new custom element syntax.

If you are using an older version of Oracle JET already (v2.1.0, v2.2.0, v2.3.0, or v3.2.0), it is very easy to migrate to the latest version (v4.0.0). While Bower and Git tooling dependencies are discounted in the v3.x.x upgrade, Yeoman and Grunt builds were made optional with the ojet-cli being introduced in v.4.0.0. Please follow the following step-by-step procedure to safely migrate your application to the latest version (v4.0.0):

  1. Clean the npm cache using the following command:
      npm cache clean
  1. Upgrade the generator-Oracle JET to use the latest version tooling using the following command:
...