Gathering detailed insights and metrics for zeit-schemas-proxied
Gathering detailed insights and metrics for zeit-schemas-proxied
Gathering detailed insights and metrics for zeit-schemas-proxied
Gathering detailed insights and metrics for zeit-schemas-proxied
All schemas used for validation that are shared between our projects
npm install zeit-schemas-proxied
Typescript
Module System
Node Version
NPM Version
73.4
Supply Chain
81.7
Quality
74.8
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
96 Commits
2 Watchers
7 Branches
1 Contributors
Updated on Apr 20, 2019
Latest Version
2.14.0
Package Id
zeit-schemas-proxied@2.14.0
Unpacked Size
74.41 kB
Size
20.79 kB
File Count
15
NPM Version
5.6.0
Node Version
9.11.2
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
5
The schemas contained within this package are used all across the ZEIT ecosystem to validate config files, requests to APIs and more. It ensures users always send just the right data.
It is important that these schemas stay in sync between projects, so that the validations are always performed in the same way for the same kind of object.
The files located in this repository are .js
and not .json
, because parsing JSON takes a little bit longer.
To get started, pick one of the schemas in this repository and load it:
1const schema = require('@zeit/schemas/deployment/config');
Next, set up AJV (the validator) and run the schema through it:
1const AJV = require('ajv'); 2 3const ajv = new AJV({ allErrors: true }); 4const isValid = ajv.validate(schema, <object-to-validate>); 5 6if (!isValid) { 7 console.error(`The following entries are wrong: ${JSON.stringify(ajv.errors)}`); 8}
That is all! :tada:
npm link
@zeit/schemas
, just link it to the dependencies: npm link @zeit/schemas
and load it!Leo Lamprecht (@notquiteleo) - ZEIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 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
24 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