Skip to content

Instantly share code, notes, and snippets.

View jbwyme's full-sized avatar

Josh Wymer jbwyme

  • Mixpanel
View GitHub Profile
@jbwyme
jbwyme / RequireJSOptimizer.java
Last active December 12, 2015 03:59
A Java class to execute the requirejs r.js optimizer with Rhino embedded (vs having to do this from the command line)
import org.mozilla.javascript.Context;
import org.mozilla.javascript.Scriptable;
import org.mozilla.javascript.tools.shell.Global;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
class RequireJSOptimizer {