npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ionic-build-info

v0.0.8

Published

adds build info to an Ionic project's assets folder

Downloads

13

Readme

Ionic Build Info

While building a desktop web application using the Ionic Framework, I realized that for support purposes I wanted the ability to display the app's build number (or even build date) in the application somewhere. I started looking for a solution and didn't find one, so I built this module.

Installation

Install the module by opening a terminal window and executing the following command:

npm install --save-dev ionic-build-info

Operation

When you execute the module, it reads the local Ionic project's package.json file, and, using the file's version property and the current date/time, creates a new file in the project at src/app/buildinfo.ts containing the following information:

export const buildInfo = {
  buildVersion: "0.0.4",
  buildDate: 1611670976033
}

To import the generated module in a page script, use the following:

import { buildInfo } from '../buildinfo';

When you import this file into your Ionic project, the app has access to the project's build details. Here's an example of how to use the generated module in your app, the following code is from a simple page that outputs the build information to the browser's console:

export class HomePage {

  appBuildNumber: string = '';
  appBuildDate: Date;

  constructor() {
    this.appBuildNumber = buildInfo.buildVersion;
    this.appBuildDate = new Date(buildInfo.buildDate);

    console.log(`Build Number: ${this.appBuildNumber}`);
    console.log(`Build Date: ${this.appBuildDate}`);
  }
 
}

To use the values in a page's content, use something like the following:

<p>Build: {{this.appBuildNumber}} [{{this.appBuildDate}}]</p>

Usage

Open the project's package.json file and add this process to the existing build script entry, changing:

"build": "ng build ",

to:

"build": "npm version patch && ionic-build-info && ng build ",

The npm version patch part of the build step increments the patch version in the package.json file before calling ionic-build-info.

With this in place, when you execute ionic build to build a production version of the app, npm will update the version number in the project's package.json file, build an updated version of the buildinfo.js file, then generate the production build of the app.


You can find information on many different topics on my personal blog. Learn about all of my publications at John Wargo Books.

If you find this code useful and feel like thanking me for providing it, please consider Buying Me a Coffee, or making a purchase from my Amazon Wish List.