Gathering detailed insights and metrics for @furystack/odata
Gathering detailed insights and metrics for @furystack/odata
Gathering detailed insights and metrics for @furystack/odata
Gathering detailed insights and metrics for @furystack/odata
npm install @furystack/odata
Typescript
Module System
Node Version
NPM Version
73.3
Supply Chain
72.7
Quality
75.6
Maintenance
100
Vulnerability
74.1
License
TypeScript (98.86%)
JavaScript (1.14%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
11,232
Last Day
1
Last Week
2
Last Month
10
Last Year
940
GPL-2.0 License
50 Commits
1 Forks
2 Watchers
4 Branches
1 Contributors
Updated on Jan 28, 2023
Minified
Minified + Gzipped
Latest Version
2.1.23
Package Id
@furystack/odata@2.1.23
Unpacked Size
298.87 kB
Size
61.46 kB
File Count
198
NPM Version
lerna/3.20.2/node@v12.16.0+x64 (linux)
Node Version
12.16.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
0%
2
Compared to previous week
Last Month
-91.6%
10
Compared to previous month
Last Year
-43.1%
940
Compared to previous year
odata v4 implementation for FuryStack. This package is in an early and experimental state. More info coming soon...
You can use OData in a similar way:
1class MyEntityType {
2 public id!: number
3 public value!: string
4}
5
6const myInjector = new Injector()
7
8myInjector
9 .useLogging()
10 .useHttpApi()
11 .useOdata('odata.svc', model =>
12 model.addNameSpace('default', namespace =>
13 namespace
14 .setupEntities(e =>
15 e.addEntityType({
16 model: MyEntityType,
17 primaryKey: 'id',
18 properties: [{ property: 'id', type: EdmType.Int16 }, { property: 'value', type: EdmType.String }],
19 }),
20 )
21 .setupCollections(collections => collections.addCollection({ model: MyEntityType, name: 'MyEntities' })),
22 ),
23 )
24 .listenHttp()
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
project is archived
Details
Reason
Found 0/26 approved changesets -- 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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
61 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-02-24
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