JSTransform 
A simple utility for pluggable JS syntax transforms using the esprima parser.
Makes it simple to write and plug-in syntax transformations
Makes it simple to coalesce multiple syntax transformations in a single pass of the AST
Gives complete control over the formatting of the output on a per-transformation basis
Supports source map generation
Comes pre-bundled with a small set of (optional) ES6 -> ES5 transforms
NOTE: If you're looking for a library for writing new greenfield JS transformations, consider looking at the Recast library instead of jstransform. We are still actively supporting jstransform (and intend to for the foreseeable future), but longer term we would like to direct efforts toward Recast. Recast does a far better job of supporting a multi-pass JS transformation pipeline, and this is important when attempting to apply many transformations to a source file.
Examples
Using a pre-bundled or existing transform:
Using multiple pre-bundled or existing transforms at once:
Writing a simple custom transform: