Git Product home page Git Product logo

npm-pipeline-rails's Introduction

npm-pipeline-rails

Use npm as part of your Rails asset pipeline

npm-pipeline-rails allows you to use any toolchain to bulid your asset files in Rails 4.2+. This allows you to:


See § How it Works for an explanation of the diagram above.


Usage

Add this line below to your Gemfile. After that, proceed with an automated or manual setup.

gem 'npm-pipeline-rails'

Automated setup

Use the generators for your preferred build tool:

  • Brunch - ./bin/rails generate npm_pipeline:brunch
  • Gulp - ./bin/rails generate npm_pipeline:gulp

Manual setup

  • Put together a setup with Brunch, Broccoli, Gulp, or any other tool. It should:
    • Take source files from app/brunch/
    • Render JS to vendor/assets/stylesheets/brunch/
    • Render CSS to vendor/assets/javascripts/brunch/
    • (Replace brunch with whatever build tool you use.)
  • Create a package.json with start and build scripts to point to this setup. (See example)
    • start - Configure this script to run a development file watcher.
    • build - Configure this script to run a production compiler.
  • Add your expected compiled assets to .gitignore.

Set up support for tests

If you're using continuous integration for your tests, configure it to run this before your tests:

npm run build

For tests running in your development machine, ensure that asset files are available when running your tests. This means starting your dev server at least once before running tests, or invoking npm run build manually.

Disable some gems

You may also want to disable some gems, depending on your set up:

  • Disable uglifyjs if you already do minification in your npm tool.
  • Disable autoprefixer-rails if you already do autoprefixing in your npm tool.
  • Disable sprockets-es6 if you already do ES6 compiling in your npm tool.
  • and so on...

Heroku

When deploying to Heroku, use Node.js and Ruby buildpacks together. See: Using Multiple Buildpacks for an App (devcenter.heroku.com)

$ heroku buildpacks:set heroku/ruby
$ heroku buildpacks:add --index 1 heroku/nodejs

Buildpack added. Next release on my-app-name will use:
  1. heroku/nodejs
  2. heroku/ruby

It's recommended to turn off config.npm.install_on_asset_precompile to make deployments faster; see § Configuration.


Configuration

npm-pipeline-rails provides these configuration options below. Put them inside config/application.rb (not in an initializer!).

# These are defaults; in most cases, you don't need to configure anything.

Rails.application.configure do
  # Enables npm_pipeline_rails's invocation of `watch` commands. (v1.5.0+)
  # If `true`, watch commands will be ran alongside Rails's server.
  # Defaults to true in development.
  config.npm.enable_watch = Rails.env.development?

  # Command to install dependencies
  config.npm.install = ['npm install']

  # Command to build production assets
  config.npm.build = ['npm run build']

  # Command to start a file watcher
  config.npm.watch = ['npm run start']

  # The commands are arrays; you may add more commands as needed:
  config.npm.watch = [
    'npm run webpack:start',
    'npm run brunch:start'
  ]

  # If 'true', runs 'npm install' on 'rake assets:precompile'. (v1.6.0+)
  # This is generally desired, but you may set this to false when
  # deploying to Heroku to speed things up.
  config.npm.install_on_asset_precompile = true
end

How it works

npm-pipeline-rails allows you to hook certain commands, usually npm scripts, during the Rails app lifecycle. It assumes that your tool will build plain JS and CSS files into vendor/assets, allowing it to be picked up by Rails's asset pipeline.

It does not replace the Rails asset pipeline, but rather it works with it. The files you build with your npm pipeline will be available as regular files in the Rails asset pipeline.

In development

When starting a Rails development server (bundle exec rails s), it runs the install command. After that, it starts a background process that runs your watch command.

In production

When running rake assets:precompile, it will first run the install command then the build command.

More info

Consult railtie.rb for the actual code that makes all these happen.


Yarn

To use Yarn instead of npm, change config.npm.install as seen below in config/application.rb. See § Configuration for more details.

Rails.application.configure do
  # ...

  config.npm.install = ['yarn']
end

Skipping Rails asset pipeline

The recommended setup renders files to vendor/assets/stylesheets/brunch/ and vendor/assets/javascripts/brunch/. (Replace brunch with whatever build tool you use.) You may opt to output to public/assets/stylesheets/ and public/assets/javascripts/ instead.

This is not recommended since you will miss out on automatic asset fingerprinting, among other nice integrations.

If you do this, you will need to run npm run build as part of your deploy script and CI test script.


Motivation

Rails's asset pipeline was a great step forward for Rails 3. For today's requirements however, it doesn't always come with all the tools you need. npm-pipeline-rails lets you outsource asset building complexities to Node.js-based tools.

Read more →


Also see

Thanks

npm-pipeline-rails © 2016+, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz

npm-pipeline-rails's People

Contributors

rstacruz avatar aka-cronos avatar jasontorres avatar victorsolis avatar mikker avatar

Watchers

Wesley Moxam avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.