
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
ember-string-parameterize
Advanced tools
An ember.js extension that transforms a string so that it may be used as part of a 'pretty' / SEO friendly URL.

A javascript method (with an ember.js wrapper) to transform a string so that it may be used as part of a 'pretty' / SEO friendly URL. Similar to ActiveSupport's parameterize inflector.
This is useful for creating slugs for your Ember.js routes. So useful that this feature was merged into Ember core with a feature flag, but later removed due to potential API bloat. Voice your opinion if you want it back, or, just use this!
Include ember-string-parameterize.js after ember.js in your app.
Or using package managers:
bower install ember-string-parameterize
npm install ember-string-parameterize
'My favorite movies.'.parameterize();
//=> 'my-favorite-movies'
'some_underscored_string'.parameterize();
//=> 'some-underscored-string'
'100 ways Ember.js is better than Angular'.parameterize();
//=> '100-ways-emberjs-is-better-than-angular'
'#emberjs Core Team Meeting Minutes - 2014/12/06'.parameterize();
//=> 'emberjs-core-team-meeting-minutes-2014-12-06'
'100 ways Ember.js is better than Angular'.parameterize(5);
//=> '100-ways-emberjs-is-better'
'100 ways Ember.js is better than Angular'.parameterize(-2);
//=> '100-ways-emberjs-is-better'
Ember.EXTEND_PROTOTYPES is disabledEmber.String.parameterize('Using without extending prototypes!');
//=> 'using-without-extending-prototypes'
Ember.String.parameterize('Using without extending prototypes!', 3);
//=> 'using-without-extending'
It will also expose StringParameterize to the browser's window object or node.js
StringParameterize('I work without Ember.js');
//=> 'i-work-without-emberjs'
StringParameterize('I work without Ember.js', 2);
//=> 'i-work'
FAQs
An ember.js extension that transforms a string so that it may be used as part of a 'pretty' / SEO friendly URL.
We found that ember-string-parameterize 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.