Tuesday 16 October 2018

Oracle Jet Start UP

Complete Oracle Jet Env Setup

Hi Guys,

Today I'll share how to setup Oracle JET Env. and start working on Oracle JET Component.

We Can start Work on Oracle Jet in below three ways -
  1. Using Command Line Tooling (If you familiar with Node js and npm then you can use CLI).
  2. Using IDE like Netbean/JSFIDDLE (If not familiar with CLI use then se IDE).
  3. Visual Development (If want to drag and drop component then prefer VD).
Below are the env setup steps-
  1. Using Command Line Tooling (If you familiar with Node js and npm then you can use CLI)-
S1- Download Node js latest version and install in your machine.
S2- Once Node js install open node.js command promt.
S3- Execute npm -g install @oracle/ojet-cli
S4- once execute you can check the information by using below cmd-
  1.  ojet --help (To see all the available cmd)
  2. ojet help create (To create Jet Application in a directory)
  3. ojet help serve (To run the application)
  4. ojet help build (To build the application)
S5- To create the jet application execute below cmd
           ojet create <App Name> --template=navdrawer||navbar||basic||blank
           go to the Project directory -->  cd <App Name>
           execute ojet serve to run the default application.
S6- once once ojet serve will load the application below application appear in the browser.

This is how start the running and up Jet env by CLI.

       2.  Using IDE like Netbean/JSFIDDLE (If not familiar with CLI use then se IDE)-

S1- Download the Netbean or JSFIDDLE IDE, I have downloaded netbean 8.2 version.
S2- Install IDE in the machine.
S3- Install Oracle JET Support plugin in IDE from Tools --> Plgins-->Search and Install.
S4- Install Darcula LAF plugin in IDE from Tools --> Plgins-->Search and Install( to use same look and feel).
S5- Now create new project (Ctrl-Shift-N) search jet and select OracleJET Quick Start.
S6- Enter required name and other information.
               

       Now click on finish.
S7- Right click on Project -->Run browser opens and run the below application.
                         



       3. Visual Development (If want to drag and drop component then prefer VD)-

Another way to develop jet application using Visual developer.
For Using visual builder cloud services you can log in into Oracle Cloud account and create application using Visual builder and deploy onto the clod.

cheers Guys.

No comments:

Eclipse With Python

Hi Guys, Today i'll share how to start python project in eclipse IDE. to start Py development in eclipse we need to add Py Dev plugi...