Project

multi_js

0.0
No commit activity in last 3 years
No release in over 3 years
A generic swappable back-end for JS minifiers
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

 Project Readme

MultiJs Build Status Dependency Status Code Climate

There are lot of Ruby libraries to minify JS. Instead of choosing a single implementation and forcing users of your library to be stuck with it, you can use MultiJs instead, which will simply choose the best available JS minifier. Here's how to use it:

require 'multi_js'

MultiJs.compile('(function(){var long_name=1}())') #=> '(function(){var a=1}())'

The use method, which sets the MultiJs adapter, takes either a symbol or a class (to allow for custom JS minifier) that responds to .min at the class level.

MultiJs tries to have intelligent defaulting. That is, if you have any of the supported engines already loaded, it will utilize them before attempting to load any. It will load libraries in following order:

If no other library is available, MultiJs falls back to uglifier.

TODO

  • Implement report:publish rake task
  • Add desciption and some design to report. Put it all in separate folder
  • benchmark against most popular JS frameworks (speed, size)
  • generate benchmark report (html or md)
  • write test suite

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request