Gathering detailed insights and metrics for collection.js
Gathering detailed insights and metrics for collection.js
Gathering detailed insights and metrics for collection.js
Gathering detailed insights and metrics for collection.js
s-collection.js
make work easy with array object
mongo-collection.js
light wrapper around a mongo collection
data-collection.js
Simple collection classes that can be used in JS/Node.
bindable-collection
[](https://travis-ci.org/mojo-js/bindable-collection.js)
Minimalistic JavaScript library for working with collections of data.
npm install collection.js
Typescript
Module System
Node Version
NPM Version
JavaScript (99.76%)
HTML (0.24%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
9 Stars
693 Commits
2 Forks
5 Watchers
2 Branches
6 Contributors
Updated on Mar 10, 2023
Latest Version
6.8.1
Package Id
collection.js@6.8.1
Unpacked Size
763.72 kB
Size
138.00 kB
File Count
69
NPM Version
8.5.1
Node Version
16.13.0
Published on
Mar 10, 2023
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
41
Collection — minimalistic JavaScript library for working with collections of data.
1// Iterate over the elements in reverse order starting with the 5th
2$C(document.querySelectorAll('.foo')).forEach((el) => {
3 ...
4}, {
5 reverse: true,
6 startIndex: 5
7});
8
9// Return an array of all the even elements of the original array
10$C([1, 2, 3, 4]).get((el) => el % 2 === 0);
11
12// Create a new object based on the source,
13// {a: 2, b: 4}
14$C({a: 4, b: 16}).map(Math.sqrt);
15
16// Iterate very large object in the lightweight thread
17await $C(new Array(1e8)).thread().forEach(() => {
18 ...
19});
The MIT License.
7.5/10
Summary
Collection.js vulnerable to Prototype Pollution
Affected Versions
< 6.8.1
Patched Versions
6.8.1
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
Found 0/12 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
detected GitHub workflow tokens with excessive permissions
Details
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
Reason
18 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
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