Gathering detailed insights and metrics for ember-cli-app-version
Gathering detailed insights and metrics for ember-cli-app-version
Gathering detailed insights and metrics for ember-cli-app-version
Gathering detailed insights and metrics for ember-cli-app-version
Adds your app's version to Ember Inspector's Info tab
npm install ember-cli-app-version
Module System
Unable to determine the module system for this package.
Min. Node Version
Typescript Support
Node Version
NPM Version
55 Stars
315 Commits
46 Forks
11 Watching
10 Branches
36 Contributors
Updated on 25 Oct 2024
JavaScript (90.36%)
HTML (8.87%)
Handlebars (0.62%)
CSS (0.15%)
Cumulative downloads
Total Downloads
Last day
-10.6%
16,081
Compared to previous day
Last week
-6.1%
85,425
Compared to previous week
Last month
18.4%
391,870
Compared to previous month
Last year
-0.8%
4,609,914
Compared to previous year
2
1
37
Adds your Ember App's version to Info tab in Ember Inspector. The version is taken from your project's package.json#version. If you add build metadata to the version, this addon will automatically append SHA to the end of the version.
ember install ember-cli-app-version
This addon provides {{app-version}}
helper that allows you to show your current app version in your app.
The addon has flags to display parts of the version:
{{app-version versionOnly=true}} // => 2.0.1
{{app-version versionOnly=true showExtended=true}} // => 2.0.1-alpha.1
{{app-version shaOnly=true}} // => <git SHA>
Flags are false
by default.
When running on Heroku the .git
folder is not present, making it impossible to fetch the git SHA
. A workaround for this is adding the below in your config/environment.js
:
1// Heroku Git Hash support 2if (process.env.SOURCE_VERSION) { 3 const pkg = require('../package.json'); 4 const hash = process.env.SOURCE_VERSION.substr(0, 7); 5 ENV['ember-cli-app-version'] = { 6 version: `${pkg.version}+${hash}`, 7 }; 8}
See the Contributing guide for details.
This project is licensed under the MIT License.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
Found 5/7 approved changesets -- score normalized to 7
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
36 existing vulnerabilities detected
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