Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konnorrogers/snowpacker
A gem to help use Rails with Snowpack
https://github.com/konnorrogers/snowpacker
Last synced: 12 days ago
JSON representation
A gem to help use Rails with Snowpack
- Host: GitHub
- URL: https://github.com/konnorrogers/snowpacker
- Owner: KonnorRogers
- License: mit
- Created: 2020-07-15T14:04:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T20:01:53.000Z (almost 2 years ago)
- Last Synced: 2024-10-24T05:48:43.103Z (20 days ago)
- Language: Ruby
- Size: 4.24 MB
- Stars: 70
- Watchers: 2
- Forks: 3
- Open Issues: 74
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# Snowpacker
## Future of the project
As I have become quite busy with other projects, I would consider Snowpacker deprecated at this time. Perhaps it will get revisited in the future. As of right now, my recommendation is to use ViteRuby.
https://vite-ruby.netlify.app/
If someone would like ownership of the project or the name, feel free to open an issue on the repo.
## WORK IN PROGRESS
If you would like to help support the future of this project,
please consider sponsoring me so I can keep a regular stream
of updates and fixes to this project.https://github.com/sponsors/ParamagicDev
Please note, that this project is still in it's infancy. Feel free to
file bug reports, issues, and feature requests.[![Gem Version](https://badge.fury.io/rb/snowpacker.svg)](https://badge.fury.io/rb/snowpacker)
[![Maintainability](https://api.codeclimate.com/v1/badges/b88ac1a56d868d4f23d5/maintainability)](https://codeclimate.com/github/ParamagicDev/snowpacker/maintainability)
This gem integrates the [snowpack](https://snowpack.dev/) JS module bundler into
your Rails / Ruby application. It is inspired by gems such as
[breakfast](https://github.com/devlocker/breakfast) /
[webpacker](https://github.com/rails/webpacker) and this project started
as a fork of
[parcel-rails](https://github.com/michaldarda/parcel-rails).This is not meant to be a 1:1 replacement of Webpacker. Snowpacker is
actually just a wrapper around Snowpack using Rake and as a result can
be used without Rails with a little extra work.## How is Snowpacker different?
Snowpacker is unbundled during development to eliminate compilation
times and then is bundled in the final build process due to waterfall
network requests that still cause some issues in production.Snowpacker uses the native ESM module spec. ESM Modules are fast,
lightweight, and natively supported by all newer browsers ("evergreen browsers")
For more reading on ESM modules, check out this link:[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'snowpacker', '~> 0.0.4.alpha1'
```### With Rails
```bash
rails snowpacker:init
```Which will install your yarn packages, create an initializer file, add config files, and create an `app/snowpacker` directory similar to Webpacker.
#### Tasks
```bash
rails snowpacker:dev # starts a dev server
rails snowpacker:build # builds for production (is hooked onto
precompile)
rails assets:precompile # will build snowpacker and asset pipeline
```#### Existing Rails app
When working with a new Rails app, it is important to switch any webpack
`require` statements to ESM-based `import`. For example, consider the
following javascript file:```diff
// app/javascript/packs/application.js- // Webpack
- require("@rails/ujs").start()
- require("turbolinks").start()
- require("@rails/activestorage").start()
- require("channels")
-
+ // Snowpacker
+ import "@rails/ujs" // Autostarts
+ import Turbolinks from "turbolinks"
+ import ActiveStorage from "@rails/activestorage"
+ import "../channels"
+
+ Turbolinks.start()
+ ActiveStorage.start()
```You may notice a `require.context` statement in your javascript to load
`channels`. This runs via Node and is not browser compatible. To get
around this Snowpacker installs a package called [import-all.macro](https://github.com/kentcdodds/import-all.macro) to allow you to import an entire directory of files.```diff
// app/javascript/channels/index.js// Load all the channels within this directory and all subdirectories.
// Channel files must be named *_channel.js.- // const channels = require.context('.', true, /_channel\.js$/)
- // channels.keys().forEach(channels)
// @TODO
+ import.all("**/*_channel.js")
```## File Structure
Snowpacker makes some assumptions about your file paths to provide
helper methods.```bash
tree -L 2 app/snowpackerapp/snowpacker/
├── assets/
│ └── picture.png
├── channels/
│ ├── consumer.js
│ └── index.js
├── entrypoints/
│ └── application.js
├── javascript/
│ └── index.js
└── stylesheets/
└── index.css
```Which upon build will output to look like this:
```bash
tree -L 1 public/snowpackspublic/snowpacks/
├── assets/
├── channels/
├── entrypoints/
├── javascript/
├── css/```
## Helpers
### Generic Helper
`<%= snowpacker_path %>` will return the value of
`Snowpacker.config.output_dir`### Assets
Assets can be accessed via `<%= snowpacker_asset_path("name", **options) %>` and accepts all
the same params as [#asset_path](https://api.rubyonrails.org/classes/ActionView/Helpers/AssetUrlHelper.html#method-i-asset_path)### Channels
Channels have no special helper.
### Packs
Packs can be accessed via:
`<%= javascript_snow_tag %>` and works the same as
[`#javascript_include_tag`](https://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#method-i-javascript_include_tag)`packs` are your "entrypoints" and where files get bundled to, very
similar to Webpacker.### Javascript
Javascript files have no special helper.
### Stylesheets
Stylesheets can be accessed via:
`<%= stylesheet_snow_tag %>` and works just like
[`#stylesheet_link_tag`](https://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#method-i-stylesheet_link_tag).
I recommend importing your css in your `packs` file if you plan on
changing it to support HMR.### HMR
To enable HMR in the `` of your document simply put:
`<%= snowpacker_hmr_tag %>`
## Configuration
After running generator, the configuration file can be found in
`config/initializers/snowpacker.rb`In addition, all related `snowpack.config.js`, `babel.config.js`, and
`postcss.config.js` can all be found in the `config/snowpacker`
directory.## Production
Gem hooks up to the `rails assets:precompile` and `rails
assets:clobber`, so no special setup is required.You can start snowpacker's compilation process manually by running
```bash
rails snowpacker:compile# OR
rails snowpacker:build
```## Examples
Examples can be found in the [/examples](/examples) directory.
## Converting from Webpack to Snowpack
- `require.context()` is not currently supported
Please use
[import.all-macro](https://github.com/kentcdodds/import-all.macro)## Issues
Not all packages may be compatible with Snowpack. Please check
[skypack.dev](https://skypack.dev) for ESM-compatible packages.## Changelog
See [CHANGELOG.md](https://github.com/ParamagicDev/snowpacker/blob/master/CHANGELOG.md)
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/ParamagicDev/snowpacker.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Roadmap
- [x] Add default file structure with init
- [ ] Add a bundler for production (work in progress)
- [x] Support require.context (There is a work around using import.all
with babel)- [ ] Reading from production manifest
- [ ] Parity with Webpacker helper methods
- [ ] Add documentation / installation on Stimulus
- [ ] Create an npm package to read a default config from and pin
snowpack versions- [ ] Add in End-to-end testing to confirm everything works as intended.
- [ ] Make the config environment from NPM in Typescript so users can import types for good completion.