Smaller :: Bundles :: JavaScript

Smaller is a minification library. It could be embedded as servlet, OSGi bundle or be used from ant or maven. Currently it supports CoffeeScript, Google Closure-Compiler, UglifyJs, LessJs, CssEmbedd and YUICompressor.

License

License

BSD
Categories

Categories

JavaScript Languages
GroupId

GroupId

de.matrixweb.smaller
ArtifactId

ArtifactId

javascript
Last Version

Last Version

0.8.8
Release Date

Release Date

Type

Type

bundle
Description

Description

Smaller :: Bundles :: JavaScript
Smaller is a minification library. It could be embedded as servlet, OSGi bundle or be used from ant or maven. Currently it supports CoffeeScript, Google Closure-Compiler, UglifyJs, LessJs, CssEmbedd and YUICompressor.

Download javascript

Dependencies

compile (6)

Group / Artifact Type Version
de.matrixweb.smaller : common jar 0.8.8
de.matrixweb.ne : native-engine jar 0.4.0
de.matrixweb.osgi.wrapped : osgi-wrapped-rhino jar 1.0.1.7R4
com.fasterxml.jackson.core : jackson-databind jar 2.3.1
org.slf4j : slf4j-api jar 1.6.4
commons-io : commons-io jar 2.2

test (3)

Group / Artifact Type Version
junit : junit jar 4.11
org.hamcrest : hamcrest-library jar 1.3
org.mockito : mockito-core jar 1.9.5

Project Modules

There are no modules declared in this project.

Smaller

Summary

Smaller is a small webservice for minification and transcoding sources. It currently supports coffeescript, closure, uglifyjs, lessjs, typescript, jshint, eslint, browserify, sweetjs, yuicompressor, ycssmin, csso, embeddcss and svgo.

Starting as server-side only application for build preprocessing Smaller is now embedded in the Smaller Development Server to be used for speed up local development with all the same build tools used for build preprocessing.

Services

  • Maven Plugin
  • Maven Standalone Plugin
  • Ant Task
  • Ant Standalone Task
  • Webservice Standalone
  • Embeddable Servlet
  • OSGi bundles

Processors

For CSS

For JavaScript

  • Merge (default)
    • Name: merge
    • Description: Joins all given source files by type (js, css) into one file. If not other merge task is in the chain this one is prepended as first one.
  • Coffee-Script
    • Name: coffeeScript
    • Description: Compiles all .coffee files into one JavaScript. Needs to be called before merge. So set merge as second step (e.g. coffeeScript,merge)!
      This processors - if configured - operates on all found js files.
    • Configuration:
      • bare=[true|false]
      • header=[true|false]
  • Typescript
    • Name: typescript
    • Description: Compiles all .ts files into one JavaScript. Needs to be called before merge. So set merge as second step: typescript,merge!
  • Closure Compiler
    • Name: closure
    • Description: Minifies JavaScript files with Closure Compiler.
  • UglifyJS
    • Name: uglifyjs
    • Description: Minifies JavaScript files with UglifyJS.
  • JS Hint
    • Name: jshint
    • Description: Tests JavaScript files with JS Hint and returns it's output.
    • Configuration:
      • Just configure the options from the jshint docs
  • eslint
    • Name: esint
    • Description: Tests JavaScript files with eslint and returns it's output.
    • Configuration:
  • browserify
    • Name: browserify
    • Description: Resolves CommonJS modules to be browser ready. This is a merge task.
    • Configuration:
      • aliases=["file#alias", "file#alias"]
  • sweet.js
    • Name: sweetjs
    • Description: Sweet.js brings the hygienic macros of languages like Scheme and Rust to JavaScript.
      This processors - if configured - operates on all found js files.

For SVG

  • SVGO
    • Name: svgo
    • Description: Optmimizes SVG images
      This processors - if configured - operates on all found svg files.

Configurations

General Configuration

A smaller configuration is specified by some information.

  • A client configuration for the choosen build-tool (Maven, Ant, Grunt, ...)
  • A config file specified by Smaller config

Maven Plugin

Use the maven plugin to utilize the smaller webservice:

<plugin>
  <groupId>de.matrixweb.smaller</groupId>
  <artifactId>smaller-maven-plugin</artifactId>
  <version>0.8.0-SNAPSHOT</version>
  <configuration>
    <host>localhost</host>
    <port>1148</port>
    <proxyhost>localhost</proxyhost>
    <proxyport>8080</proxyport>
    <target>target/smaller</target>
    <config-file>${basedir}/smaller.yml</config-file>
  </configuration>
</plugin>

Or use the standalone maven plugin if you do not want to use the webservice:

<plugin>
  <groupId>de.matrixweb.smaller</groupId>
  <artifactId>smaller-maven-standalone-plugin</artifactId>
  <version>0.8.0-SNAPSHOT</version>
  <configuration>
    <target>target/smaller</target>
    <config-file>${basedir}/smaller.yml</config-file>
  </configuration>
</plugin>

Ant Task

<taskdef name="smaller" classname="de.matrixweb.smaller.clients.ant.SmallerTask" classpath="../../../../target/classes" />

<target name="smaller">
  <smaller 
      host="localhost"
      port="1148"
      proxyhost="localhost"
      proxyport="8080"
      target="target/smaller"
      configFile="${basedir}/smaller.yml"
      />
</target>

Or use the standalone ant task if you do not want to use the webservice, just replace the ant-client jar file with the standalone version.

Webservice Standalone

Just start the standalone build which has a main method included. Parameters are port and ip-address to bind to in this order.

OSGi bundles

Start the osgi-server module with one of the supplied scripts start.sh or start-local.sh. This either downloads dependencies from maven central or from a local maven repository.

OSGi client

In this mode smaller scans installed OSGi bundles for matching resources and builds on that. This is useful if Smaller should be embedded in an OSGi application during runtime.

The configuration is fetched from a bundle with the header 'Smaller-Config'. There could be more than one of this bundles. For each environment in the config files found, one servlet with the target process-address is registered.

For simple Apache Karaf deployment execute the following in the shell:

features:addurl mvn:de.matrixweb.smaller/smaller-osgi/0.8.0/xml/features
features:install smaller-browserify
features:install smaller-lessjs
...

Embeddable Servlet

<servlet>
  <servlet-name>smaller</servlet-name>
  <servlet-class>de.matrixweb.smaller.servlet.SmallerServlet</servlet-class>
  <init-param>
    <param-name>processors</param-name>
    <param-value>closure,lessjs</param-value>
  </init-param>
  <init-param>
    <param-name>includes</param-name>
    <param-value>**/*.js,**/*.less</param-value>
  </init-param>
  <init-param>
    <param-name>excludes</param-name>
    <param-value>**/*.bin</param-value>
  </init-param>
  <init-param>
    <param-name>options</param-name>
    <param-value>output:out-only=true</param-value>
  </init-param>
</servlet>
<servlet-mapping>
  <servlet-name>smaller</servlet-name>
  <url-pattern>/css/style.css</url-pattern>
</servlet-mapping>
<servlet-mapping>
  <servlet-name>smaller</servlet-name>
  <url-pattern>/js/masic-min.js</url-pattern>
</servlet-mapping>

The config file format

# Block for build-server options
build-server:
    output-only: true
    # Defines the environemnts to execute during build server run 
    environments:
        - js-prod
        - css
    
# Block for development-server options
dev-server:
    # ip to bind the server to 
    ip: 0.0.0.0
    # port to listen on
    port: 12345
    # the proxy to connect to
    proxyhost: localhost
    proxyport: 3000
    # 
    debug: false
    # True to enable live-reload injection into the page
    live-reload: true
    # Defines the environemnts to execute during dev server run 
    environments:
        - js
        - css
        - templates
    
# The environments specify processing instructions
# It is best to have one environment for each process-url you want
# to be processed by smaller
environments:
    js:
        # Defines the url to intercept/process
        process: "/app.js"
            
        # In case of js testing specify the used framework here
        test-framework: jasmine
        
        # The files block defines the document-roots and included/excluded
        # files which should be included for processing
        files:
            # Multiple document-roots could be specifed. If there are
            # naming conflicts the first file always wins.
            folder:
                - "doc-root1"
                - "doc-root2"
            includes:
                - "**/*.coffee"
                - "**/*.js"
            excludes:
                - "**/*.jpg"
        
        # The same as the files block but for test-code to separate test
        # and production code
        test-files:
            folder:
                - "./tests-root1"
                - "./tests-root2"
            includes:
            excludes:
            
        # Defines the used processors with all its options.
        # Usually only the first processor needs a 'src' definition since
        # the output of the first is the input of the second (and so on).
        # The last one gives its output to the url specifed in the 'process'
        # block above.
        # The order in this block does not matter, it is specifed in the
        # 'pipeline' list below.
        processors:
            coffeeScript:
                src: "/main.coffee"
                options:
                    source-maps: true
                    bare: true
            browserify:
                options:
                    aliases:
                        "./some-file": library
                        
        # The order in which to execute the processors
        pipeline:
            - coffeeScript
            - browserify
            
    js-prod:
        # This specifies the base configuration this one is derived from
        inherits: js
        # Folders are overwritten in an inherited configuration
        folder:
            - "doc-root1"
        processors:
            # Processors are added to the inherited configuration
            uglifyjs:
        # The pipeline is as well overwritten to define the order of execution
        # in the current environment
        pipeline:
            - coffeeScript
            - browserify
            - uglifyjs
    
    css:
        process: "/style.css"
        files:
            folder:
                - "dir1"
            includes:
                - "**/*.less"
            excludes:
                - "**/*.bin"
        processors:
            lessjs:
                src: "/main.less"
        pipeline:
            - lessjs
            
    templates:
        templates: handlebars
        files:
            folder:
                - "dir1"
                - "dir2"
            includes:
                - "**/*.hbs"

Developer information

Additional documentation

Credits

Thanks to SinnerSchrader for their support and the time to work on this project.

Versions

Version
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0