Installations
npm install jsontyped
Score
67.3
Supply Chain
74.4
Quality
75.4
Maintenance
100
Vulnerability
99.3
License
Developer
linck
Developer Guide
Module System
CommonJS
Min. Node Version
Typescript Support
No
Node Version
6.8.0
NPM Version
3.10.8
Statistics
2 Stars
21 Commits
2 Watching
1 Branches
1 Contributors
Updated on 03 Dec 2017
Languages
TypeScript (100%)
Total Downloads
Cumulative downloads
Total Downloads
5,360
Last day
0%
1
Compared to previous day
Last week
-72.7%
3
Compared to previous week
Last month
20.7%
35
Compared to previous month
Last year
-15.8%
282
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
2
Dev Dependencies
3
Jsontyped
Load Json file in Typescript Object
How to use
Simple!
1. Create your json file:
myconfig.json
{
"port": "3000",
"databaseName": "teste"
}
2. Define your type:
export interface MyConfig {
port: number;
databaseName: String;
}
3. Load your json file and use:
import { JsonLoader } from "jsontyped";
var config: MyConfig = JsonLoader.loadFile<MyConfig>("./myconfig.json");
connect(config.port, config.databaseName);
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/21 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
license file not detected
Details
- Warn: project does not have a license file
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Score
2.6
/10
Last Scanned on 2024-11-18
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