
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
ember-data-filter
Advanced tools
ember install ember-data-filter
You'll need to load a custom script that enables the script before you load Ember. For example, if you call your file config.js:
// /config.js
window.EmberENV = window.EmberENV || {};
window.EmberENV.ENABLE_DS_FILTER = true;
If you're using Rails, you can use a Sprockets require directive to load this before ember:
// app/assets/application.js
//= require jquery
//= require config
//= require ember
// .. the rest of your require / file here ..
If you're loading ember using script tags, then you can simply load config.js first:
<script src="jquery.js"></script>
<script src="config.js"></script>
<script src-"ember.js"></script>
This addon enables the Ember.EmberENV.ENABLE_DS_FILTER
flag. This
allows you to use store.filter
without getting a deprecation warning
in Ember Data 1.13 and 2.0.
The Filter API is about to under-go some heavy churn to fix issues with it.
You can combine store.all
in a computed property:
// app/controllers/posts.js
export default Ember.Controller.extend({
posts: Ember.computed(function() {
return this.store.all('post');
}),
filteredPosts: Ember.computed('posts.@each.isPublished', function() {
return this.get('posts').filterBy('isPublished');
})
});
git clone
this repositorynpm install
bower install
ember server
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
FAQs
The default blueprint for ember-cli addons.
The npm package ember-data-filter receives a total of 148 weekly downloads. As such, ember-data-filter popularity was classified as not popular.
We found that ember-data-filter 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.