compile-code-loader

Compiles javascript with webpack and loads result as string

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
compile-code-loader
1.0.03 years ago8 years agoMinified + gzip package size for compile-code-loader in KB

Readme

compile-code-loader
Compiles javascript with webpack and loads result as string
Usage:
To compile and get result as string:
var compiledSourceString = require('compile-code?asString=true!./fileToLoad');

Also it is possible to get result as javascript and apply transformation, uglifyjs for example:
var compiledSourceString = require('raw!uglify!compile-code!./fileToLoad');

Contributing

  1. npm install
  2. cd examples && npm install
  3. npm run build-examples