Gathering detailed insights and metrics for aurelia-gridstack
Gathering detailed insights and metrics for aurelia-gridstack
Gathering detailed insights and metrics for aurelia-gridstack
Gathering detailed insights and metrics for aurelia-gridstack
npm install aurelia-gridstack
Typescript
Module System
Node Version
NPM Version
JavaScript (46.58%)
TypeScript (29.11%)
Shell (20.07%)
HTML (2.77%)
EJS (1.08%)
CSS (0.4%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
11 Stars
45 Commits
3 Forks
4 Watchers
3 Branches
9 Contributors
Updated on Apr 04, 2025
Latest Version
6.1.0
Package Id
aurelia-gridstack@6.1.0
Unpacked Size
139.13 kB
Size
13.26 kB
File Count
55
NPM Version
10.1.0
Node Version
20.10.0
Published on
Feb 19, 2025
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
4
Aurelia wrapper for gridstack
npm i gridstack aurelia-gridstack aurelia-typed-observable-plugin tslib --save
1// main.ts 2export function configure(aurelia: Aurelia) { 3 aurelia.use.plugin(PLATFORM.moduleName("aurelia-gridstack")); 4 // the rest of your configuration... 5}
1 <grid-stack min-row="5" float> 2 <grid-stack-item x="0" y="0" w="2" h="1"> 3 <div class="item">Item1</div> 4 </grid-stack-item> 5 <grid-stack-item x="1" y="1" w="2" h="2"> 6 <div class="item">Item2</div> 7 </grid-stack-item> 8 <grid-stack-item x="3" y="2" w="1" h="2"> 9 <div class="item">Item3</div> 10 </grid-stack-item> 11 </grid-stack> 12 13 Or with bindings 14 15 <grid-stack min-row="5" float> 16 <grid-stack-item repeat.for="i of items" x.bind="i.x" y.bind="i.y" w.bind="i.w" h.bind="i.h"> 17 <div class="item"> 18 <div>Item ${$index + 1}</div> 19 <div>x: ${i.x}</div> 20 <div>y: ${i.y}</div> 21 <div>w: ${i.w}</div> 22 <div>h: ${i.h}</div> 23 </div> 24 </grid-stack-item> 25 </grid-stack>
1 items = [ 2 { x: 0, y: 0, w: 2, h: 1 }, 3 { x: 1, y: 1, w: 2, h: 2 }, 4 { x: 3, y: 2, w: 1, h: 2 } 5 ];
You can lock a grid by setting static
on the grid-stack component:
1 <grid-stack static></grid-stack>
If you feel that something is missing please submit an issue or better yet a PR.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
5 existing vulnerabilities detected
Details
Reason
Found 5/28 approved changesets -- score normalized to 1
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
project is not fuzzed
Details
Reason
security policy file not detected
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-07
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