Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

karma-traceur-preprocessor

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-traceur-preprocessor

A Karma plugin. Compile ES6 script on the fly using traceur-compiler.

Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
28
7.69%
Maintainers
1
Weekly downloads
 
Created
Source

karma-traceur-preprocessor

Preprocessor to compile ES6 JavaScript on the fly using traceur-compiler.

Installation

Add karma-traceur-preprocessor as a devDependency in your package.json.

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-traceur-preprocessor": "~0.1"
  }
}

Or you can manually install it:

npm install karma-traceur-preprocessor --save-dev

Configuration

Following code shows the default configuration...

// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      'src/**/*.js': ['traceur']
    },

    traceurPreprocessor: {
      // options passed to the traceur-compiler, see traceur --longhelp for list of options
      options: {
        sourceMap: false
      },
      // custom filename transformation function
      transformPath: function(path) {
        return path.replace(/\.js$/, '.generated.js');
      }
    }
  });
};

If you set the sourceMap preprocessor option to true then the generated source map will be inlined as a data-uri.

Source maps allow the browser to map the generated JavaScript back to the original ES6 code. You can then set breakpoints in the source ES6 code instead of the generated code. In the browser you should see two files for each source file: .generated.js and .js. The .generated.js is the compiled output from Traceur and .js is the original source file.

For more information on Karma see the homepage.

For an example of a project configured to test ES6 code check out karma-traceur-test.

Keywords

karma-plugin

FAQs

Package last updated on 06 Nov 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts