
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
karma-ember-rocks-traceur
Advanced tools
A Karma plugin. Compile ES6 script on the fly using traceur-compiler for ember-rocks
Preprocessor to compile ES6 JavaScript on the fly using traceur-compiler for Ember Rocks.
Install karma-ember-rocks-traceur
as a devDependency for your project:
npm install karma --save-dev
npm install karma-ember-rocks-traceur --save-dev
The following example configuration shows some of the required settings for enabling Traceur support. Traceur compiles source files into either AMD or Node.js modules. Since Karma is testing in a browser you need to configure RequireJS.
// karma.conf.js
module.exports = function(config) {
config.set({
// at a minimum need requirejs + emberRocksTraceur
frameworks: ['mocha', 'requirejs', 'emberRocksTraceur'],
preprocessors: {
'src/**/*.es6': ['emberRocksTraceur']
},
files: [
{pattern: 'src/**/*.es6', included: false},
{pattern: 'test/**/*Spec.es6', included: false},
'test/test-main.js'
],
// default configuration, not required
traceurPreprocessor: {
// options passed to the traceur-compiler
// see traceur --longhelp for list of options
options: {
sourceMaps: false,
modules: 'amd'
}
}
});
};
Traceur is an ES6 to ES5 transpiler, and as such, does not support older browsers without ES5 support like IE8 or PhantomJS. (This is the case for any Traceur-compiled code, not just that produced by karma-ember-rocks-traceur.)
For more information on Karma see the homepage.
Karma Ember Rocks Traceur was based on Karma Ember Rocks Traceur to be using the ember-rocks;
FAQs
A Karma plugin. Compile ES6 script on the fly using traceur-compiler for ember-rocks
The npm package karma-ember-rocks-traceur receives a total of 2 weekly downloads. As such, karma-ember-rocks-traceur popularity was classified as not popular.
We found that karma-ember-rocks-traceur demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.