Gathering detailed insights and metrics for @connectedcars/setup
Gathering detailed insights and metrics for @connectedcars/setup
Gathering detailed insights and metrics for @connectedcars/setup
Gathering detailed insights and metrics for @connectedcars/setup
npm install @connectedcars/setup
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
305 Commits
14 Watching
10 Branches
28 Contributors
Updated on 24 Oct 2024
TypeScript (75.22%)
JavaScript (23.69%)
Dockerfile (1.09%)
Cumulative downloads
Total Downloads
Last day
122.4%
338
Compared to previous day
Last week
93.1%
3,653
Compared to previous week
Last month
461.6%
8,155
Compared to previous month
Last year
47.3%
25,891
Compared to previous year
22
Connected Cars JavaScript/TypeScript development setup
1npm install --save-dev @connectedcars/setup
Initiate project
1./node_modules/.bin/setup init
Update dependencies
1./node_modules/.bin/setup update
-f, --force Whether to override/remove existing configuration
-h, --help Output usage information
-t, --template [value] Which template to use (defaults to "node")
-v, --verbose Whether to enable verbose logging
-V, --version Output the version number
Extend existing configurations from node_modules/setup:
And manually install needed dependencies:
Required:
Sugested:
1{ 2 "recommendations": ["dbaeumer.vscode-eslint", "firsttris.vscode-jest-runner", "editorconfig.editorconfig"] 3}
1{ 2 "version": "0.2.0", 3 "configurations": [ 4 { 5 "type": "node", 6 "name": "vscode-jest-tests", 7 "request": "launch", 8 "args": [ 9 "--runInBand", 10 "--coverage=false" 11 ], 12 "cwd": "${workspaceFolder}", 13 "console": "integratedTerminal", 14 "internalConsoleOptions": "neverOpen", 15 "program": "${workspaceFolder}/node_modules/jest/bin/jest" 16 }, 17 { 18 "name": "setup init", 19 "type": "node", 20 "request": "launch", 21 "protocol": "inspector", 22 "cwd": "${workspaceRoot}", 23 "preLaunchTask": "npm: build:js", 24 "outFiles": [ 25 "${workspaceRoot}/build/dist/**/**.js" 26 ], 27 "program": "${workspaceFolder}/bin/setup.ts", 28 "sourceMaps": true, 29 "args": [ 30 "init" 31 ], 32 "env": { 33 "TEMPLATES_PATH": "${workspaceFolder}/templates" 34 }, 35 "internalConsoleOptions": "openOnSessionStart" 36 } 37 ] 38}
1{ 2 "typescript.tsdk": "node_modules/typescript/lib", 3 "eslint.enable": true, 4 "eslint.validate": [ 5 "javascript", 6 "typescript" 7 ], 8 "files.autoSave": "off", 9 "files.exclude": { 10 "**/.git": true, 11 "**/.DS_Store": true, 12 "build": true 13 }, 14 "git.ignoreLimitWarning": true, 15 "[javascripts][javascriptreact][typescript][typescriptreact][json]": { 16 "editor.formatOnSave": false, 17 "editor.codeActionsOnSave": { 18 "source.fixAll.eslint": true 19 } 20 }, 21 "[json][jsonc]": { 22 "editor.formatOnSave": true 23 } 24}
1{ 2 // See https://go.microsoft.com/fwlink/?LinkId=733558 3 // for the documentation about the tasks.json format 4 "version": "2.0.0", 5 "tasks": [ 6 { 7 "type": "npm", 8 "script": "build:js", 9 "group": "build", 10 "problemMatcher": [] 11 } 12 ] 13}
No vulnerabilities found.
Reason
16 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
3 existing vulnerabilities detected
Details
Reason
Found 11/21 approved changesets -- score normalized to 5
Reason
dependency not pinned by hash detected -- score normalized to 1
Details
Reason
detected GitHub workflow tokens with excessive permissions
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
Score
Last Scanned on 2024-11-25
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