Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@saithodev/ts-appversion
Advanced tools
Reads the version from your packages.json and saves it in a .ts file you can include into your application.
This package extracts version information from your package.json and Git (if configured) and saves it into a TypeScript file. You can then access that TypeScript file from your application and display the version in your app.
The examples below illustrate the usage of this package for the Angular framework. However it should work similarly for any other JavaScript framework that is using TypeScript.
The package comes with a script that has to be run before your application is built. You might want to use prestart and prebuild inside your package.json for that:
{
scripts: [
"prestart": "ts-appversion",
"start": "ng serve",
"prebuild": "ts-appversion",
"build": "ng build",
]
}
With that setup the file is updated when npm start
and npm build
are run.
Note: You won't be able to run ng build
anymore as the script will not be executed. Use npm build
instead.
Argument | Meaning | Default |
---|---|---|
--root | root directory where your package.json is located | . |
--file | relative location of the output file (based on the root directory) | ./src/_version.ts |
--git | relative location of the folder containing the .git folder (based on the root directory) | . |
--pnpm | PNPM has a different folder structure, resulting in a different root level. Add this if you use PNPM to install your dependencies. If package.json is not found at the expected PNPM path, it will fall back to the default one. This setting is ignored if --root is an absolute path. | false |
The script generates a TypeScript file at the location ./src/_versions.ts
if you haven't provided a different location.
You'll be able to import the values just like any other package, if you want use just versions information, like in environment.ts example file:
import versions from '../_versions';
or you can import also TsAppVersion and use directly in your template, like in app.component.ts example file
import { TsAppVersion, versions } from 'src/_versions.ts';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
public readonly tsAppVersion: TsAppVersion;
constructor() {
this.tsAppVersion = versions;
}
}
backward compatibility with previous version is guarantee
The file will export an object with following variables:
Note: The variables starting with "git" and the variable "versionLong" will only be available for Git repositories.
In some cases it might be better to not display the version number or only the short notation. You can use the environments to display different version informations.
In the following example:
environments/environment.ts
import versions from '../_versions';
export const environment = {
production: false,
version: versions.versionDate,
};
environments/environment.staging.ts
import versions from '../_versions';
export const environment = {
production: false,
version: versions.versionLong,
};
environments/environment.prod.ts
import versions from '../_versions';
export const environment = {
production: true,
version: versions.version,
};
From there you can access the version inside the Component which should display the version, e.g.:
import { Component } from '@angular/core';
import { environment } from '../environments/environment';
@Component({
selector: 'app-root',
template: '{{title}} {{version}}'
})
export class AppComponent {
title = 'app';
version = environment.version ? 'v' + environment.version : '';
}
Check out the example/ directory for a working example Angular application.
FAQs
Reads the version from your packages.json and saves it in a .ts file you can include into your application.
The npm package @saithodev/ts-appversion receives a total of 391 weekly downloads. As such, @saithodev/ts-appversion popularity was classified as not popular.
We found that @saithodev/ts-appversion demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.