7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

OracleJetインストール方法

Posted at

OracleJetとは

OracleJetはオラクルが開発したエンタープライズアプリケーション向けのJavaScriptライブラリです。
SPAのサポートや「Alta UI」のほか、JQuery、KnockoutJS、RequireJS、Hammerなども含まれた統合的なライブラリのようなのでとりあえずインストールしてみました。

インストール手順

基本的には公式の手順(OracleJet)に従っていれば行います。
備忘のために幾つか必要なとこも書いておきます。

環境構築

まずは、npmの最新化を行っておきます。
npm install -g npm

続いて下記コマンドでインストールします。
公式には書いてありませんが、bower,load-grunt-config,jit-grunt,grunt-cliについても必要なようなのでインストールしておきます。

npm -g install yo grunt generator-oraclejet load-grunt-config jit-grunt grunt-cli

また、この時点でbower installも行いOracleJetのコンポーネントをインストールしておきます。

OracleJet環境作成

下記、コマンドを実行
yo oraclejet oracle_jet_sample --template=basic

ビルド、起動

以下のコマンドを実行すればブラウザが勝手に起動しデモ画面が表示されるはずです。
cd oracle_jet_sample grunt build grunt serve

何ができて、何ができないかは
公式のCookBookを参照してください。

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?