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

nativescript-performance-monitor

v1.0.0

Published

Measure and show FPS and (on iOS) CPU usage.

Downloads

7

Readme

NativeScript Performance Monitor

Measure and show FPS and (on iOS) CPU usage!

Demo video on YouTube

20 sec video, showing off the plugin on iOS and Android

Installation

From the command prompt go to your app's root folder and execute:

tns plugin add nativescript-performance-monitor

Start monitoring

After adding the plugin you can start monitoring from code. There are a few options you can pass in as well (the options object itself is optional as well):

| Option | iOS? | Android? | Description --- | --- | --- | --- | onSample? | :white_check_mark: | :white_check_mark: | A callback function that gets invoked on every sample. If you don't want to use the default UI of this plugin you can use this to render your own UI. See the examples below for the function spec. | hide? | :white_check_mark: | :white_check_mark: | Set to true if you don't want the default UI to show. So roll your own or go ito stealth mode entirely. | textColor? | :white_check_mark: | :white_check_mark: | The text color of the monitor view (default white). | backgroundColor? | :white_check_mark: | :white_medium_square: | Background color of the monitor view (default black). | borderColor? | :white_check_mark: | :white_medium_square: | The border color of the monitor view (default black).

TypeScript

import { PerformanceMonitor, PerformanceMonitorSample } from 'nativescript-performance-monitor';
import { Color } from "color";

const performanceMonitor: PerformanceMonitor = new PerformanceMonitor();

// this would suffice..
performanceMonitor.start();

// .. but we want to show off the options ;)
performanceMonitor.start({
  textColor: new Color("white"),
  backgroundColor: new Color("black"),
  borderColor: new Color("black"),
  hide: false,
  onSample: (sample: PerformanceMonitorSample) => {
    console.log("FPS: " + sample.fps);
    if (sample.cpu) { // iOS only
      console.log("CPU %: " + sample.cpu);
    }
  }
});

JavaScript

var perfMon = require("nativescript-performance-monitor");
var color = require("color");

var performanceMonitor = new perfMon.PerformanceMonitor();

performanceMonitor.start({
  textColor: new color.Color("white"),
  backgroundColor: new color.Color("black"),
  borderColor: new color.Color("black"),
  hide: false,
  onSample: function (sample) {
    console.log("FPS: " + sample.fps);
    if (sample.cpu) { // iOS only
      console.log("CPU %: " + sample.cpu);
    }
  }
});

Stop monitoring

To stop receiving measurements and hide the monitor UI you can simply do this:

performanceMonitor.stop();

Usage with Angular

In any component, or even app.module.ts add:

import { PerformanceMonitor } from "nativescript-performance-monitor";

export class MyComponent {
  // use the constructor, or OnInit, or trigger from a button, or whatever really
  constructor() {
    new PerformanceMonitor().start({
      // options
    });
  }
}

Known issues (Android)

  • May crash when a Toast is shown on newer Android versions while you're using the default UI.
  • UI will hide when app is pauzed / resumed.