applies browserify transforms to source code without bundling, enabling bundler-agnostic npm distributions. Current stable version 2.0.3, experimental status. Useful for pre-applying transforms like glslify or brfs to individual files. Differentiates from full bundlers by emitting single-file transforms suitable for library authors. Low maintenance cadence; last release in 2018.
npm install transpilifyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows programmatic usage: create transpiler with brfs transform, pipe a file through, and write output.
Consider alternatives like babel or esbuild for active support.
Ensure transforms are purely source-to-source without bundler assumptions.
Use proper shell escaping, e.g. -t [ babelify --presets [ es2015 ] ]
npm install brfs --save-dev in project root.
Use const { createTranspiler } = require('transpilify') or import { createTranspiler } from 'transpilify'.