Strapi plugin logo for App Version

App Version

Display the version of your project in the settings

thumbnail for App Version
Logo - Strapi Plugin App Version

Strapi v5 - Plugin App Version

Strapi Plugin that displays your app version in the Strapi settings

GitHub package.json version Monthly download on NPM

UI preview

A plugin for Strapi Headless CMS that displays your app version in the Strapi settings

Features

  • Display your app version in the Strapi settings

Usage

To configure the App Version plugin, add your configuration to the plugin settings. The configuration consist of an object with the version:

1type Config = {
2  version: string
3}

Example Configuration

1// config/plugins.ts
2import type { Config as AppVersionConfig } from 'strapi-plugin-app-version/dist/server/src/config'
3
4import packageJson from '../package.json'
5
6export default () => ({
7  'app-version': {
8    enabled: true,
9    config: {
10      version: packageJson.version,
11    } satisfies AppVersionConfig,
12  }
13})

Install now

npm install strapi-plugin-app-version

STATS

No GitHub star yet165 weekly downloads

Last updated

2 days ago

Strapi Version

>=5.0.0 <6.0.0-0

Author

github profile image for Christophe Carvalho Vilas-Boas
Christophe Carvalho Vilas-Boas

Useful links

Create your own plugin

Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.