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
TypeScript (98.86%)
JavaScript (1.14%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
GPL-2.0 License
50 Commits
1 Forks
1 Watchers
4 Branches
1 Contributors
Updated on Jan 28, 2023
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%
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
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
Found 0/26 approved changesets -- score normalized to 0
Reason
project is archived
Details
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
62 existing vulnerabilities detected
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