Gathering detailed insights and metrics for ember-searchable-collection
Gathering detailed insights and metrics for ember-searchable-collection
Gathering detailed insights and metrics for ember-searchable-collection
Gathering detailed insights and metrics for ember-searchable-collection
npm install ember-searchable-collection
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (86.67%)
HTML (13.33%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
5 Stars
26 Commits
1 Watchers
3 Branches
2 Contributors
Updated on Jan 02, 2018
Latest Version
0.4.1
Package Id
ember-searchable-collection@0.4.1
Size
3.03 kB
NPM Version
3.10.3
Node Version
6.3.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
22
The searchable-collection
component offers simple search functionality with a minimal, flexible UI.
NOTE: the searchable-collection
component uses contextual components, and requires Ember 2.3 or higher.
1{{#searchable-collection (array "apples" "oranges" "bananas") as |search|}} 2 <p> 3 {{!-- search input --}} 4 {{search.field}} 5 </p> 6 7 <p> 8 {{#each search.results as |fruit|}} 9 {{fruit}}<br> 10 {{/each}} 11 </p> 12{{/searchable-collection}}
For more complex collection members, we're able to define which properties are queryable using the searchableProperties
property:
1{{#searchable-collection 2 (array 3 (hash 4 name="apples" 5 opinion="good" 6 ) 7 (hash 8 name="oranges" 9 opinion="awesome" 10 ) 11 (hash 12 name="bananas" 13 opinion="meh" 14 ) 15 ) 16 searchableProperties=(array "name" "opinion") 17as |search|}} 18 {{search.field}} 19 20 {{#each search.results as |fruit|}} 21 {{fruit.name}} ({{fruit.opinion}}) 22 {{/each}} 23{{/searchable-collection}}
git clone
this repositorynpm install
bower install
ember server
npm test
(Runs ember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://ember-cli.com/.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/25 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More