アプリケーションに Turbo をインストール
Turbo は、アプリケーションの <head>
内にて Turbo 配布スクリプトから直接、または esbuild などのバンドル経由で npm を使用することにより、コンパイルされた形で参照することができます。
原文
Installing Turbo in Your Application
Turbo can either be referenced in compiled form via the Turbo distributable script directly in the <head>
of your application or through npm via a bundler like esbuild.
# コンパイル済みスクリプト
Skypack のような CDN バンドラーを利用してリリースされた最新の Turbo を使用できます。詳細は、https://www.skypack.dev/view/@hotwired/turbo を参照してください。 またはunpkgからコンパイルされたパッケージをダウンロードできます。
原文
# In Compiled Form
You can float on the latest release of Turbo using a CDN bundler like Skypack. See https://www.skypack.dev/view/@hotwired/turbo for more details. Or download the compiled packages from unpkg.
# npm パッケージ
パッケージングツールの npm
や yarn
を利用して npm から Turbo をインストールできます。下記のようにコード内で require や import できます。
import * as Turbo from "@hotwired/turbo";
原文
# As An npm Package
You can install Turbo from npm via the npm
or yarn
packaging tools. Then require or import that in your code:
import * as Turbo from "@hotwired/turbo"
# Ruby on Rails アプリケーション
JavaScript フレームワークの Turbo は、アセットパイプラインで直接利用できるように turbo-rails gem に含まれています。
原文
# In a Ruby on Rails application
The Turbo JavaScript framework is included with the turbo-rails gem for direct use with the asset pipeline.