importmap-rails reference
What are import maps?
Import maps is a proposal that provides control over what URLs get fetched by JavaScript import
statements. The basic idea is that you can ship modular JavaScript like the below directly to the browser without transpiling it through a tool like Webpack:
For this to work, you supply the browser with an importmap like this:
which would essentially translate to:
Import maps = no Webpack = Win!
Even better, you can avoid NPM and Node.js altogether by supplying HTTP paths instead:
Is it safe to use?
There’s native support for import maps in Chrome / Edge 89+. There’s also a shim for browsers with basic ESM support so that it should work for around 95% of users.
Import maps in Rails
How to install
importmap-rails
is included by default in Rails 7+ applications.
For older Rails apps, you can do:
- Run
./bin/bundle add importmap-rails
- Run
./bin/rails importmap:install
Configuration
The import map is configured in config/importmap.rb
and will look something like this in a fresh Rails 7 project:
This import map is then included in the app/views/layouts/application.html.erb
via <%= javascript_importmap_tags %>
. You can view the output in your browser’s devtools.
Add to importmap via CDN
You can use the ./bin/importmap pin
command to get Rails to resolve NPM packages via the jspm.org CDN. For example, suppose you want to pin alpinejs, you can run:
and Rails will append the following to your config/importmap.rb
:
Add to importmap via /vendor directory
If you don’t want to use a CDN, you can download vendored files from the CDN instead:
This will output something like:
You can then use the download vendor/javascript/<package>
in your application.
View importmap
You can use the ./bin/importmap json
command to view your importmap:
Remove from importmap
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment