LoginSignup
18
17

More than 5 years have passed since last update.

[CDN] UNPKGの使い方

Last updated at Posted at 2017-06-07

UNPKG

Content delivery network(CDN)のUNPKGを紹介します。UNPKGはnpmで公開されている物が対象となっています。他のCDNより多くのファイルを扱っていると思います。

UNPKG

使い方

最新バージョンを使用する場合

[]はオプション

https://unpkg.com/パッケージ名[/ディレクトリ]/ファイル

https://unpkg.com/react/dist/react.min.js

バージョンを指定して使用する場合

[]はオプション

https://unpkg.com/パッケージ名@バージョン[/ディレクトリ]/ファイル

https://unpkg.com/react@15.5.4/dist/react.min.js

ファイルを探す

ファイルを探す際は、最後を "/" で終えるとファイルリスト表示になります。必要なファイルのURLを探すのに使用できます。

https://unpkg.com/react/
18
17
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
18
17