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

screen-time-track

v1.0.0

Published

Library to measure the screen time of a user

Downloads

4

Readme

Screen Time Tracker

Tracking the time users spend on each screen is essential nowadays. This library makes it easy to measure how long users spend on each page.

Install

npm install screen-time-tracker

Usage

 screen-time-tracker

Contributing

If you want to contribute by adding or improving something, you're welcome to collaborate directly in this repository: screen-time-tracker

License

Screen Time Tracker is released under the MIT License.

Instructions to Use

This library helps you save data in the IndexedDB for each page you visit. If the page is minimized or not visible, the tracking pauses and saves the time. You can view the saved records in the browser's IndexedDB. The structure is as follows:

key -> url
value -> durations -> [ { visit: 1, time: 5000, ... } ]
url -> url

Each visit is saved starting from 1, and the time is measured in milliseconds.

Use basic

  • Import the library in your project:
import { ScreenTimeTracker } from 'screen-time-tracker';
  • Create an instance to call the desired functions:
const tracker = new ScreenTimeTracker();
  • Start tracking on the current page:
tracker.startTracking();
  • Export data with all the information related to each page:
tracker.exportData().then((data) => console.log(data));
  • Calculate the total time in HH:MM for all saved pages:
tracker.calculateTotalTime().then((totalTimes) => console.log(totalTimes));
  • Delete this Database in IndexDB for collect new registers
tracker.deleteIndexDB()

Example Usage in an App

You can call each function based on the functionality you want to execute. In this example, we start tracking when the page loads, stop tracking when the page unloads, and calculate or export total times based on a button click event.

import { ScreenTimeTracker } from "./src/screen-time-tracker.js";

const tracker = new ScreenTimeTracker();

// Start tracking when the page loads
document.addEventListener("DOMContentLoaded", () => {
    tracker.startTracking();

    // Stop tracking when the page is closed
    window.addEventListener("beforeunload", () => {
        tracker.stopTracking();
    });

    // Button to export data
    document.getElementById("exportData").addEventListener("click", () => {
        tracker.stopTracking().then(() => { 
            tracker.exportData().then((data) => {
                console.log("Exported Data:", data);
            });
        });
    });

    // Button to calculate total time for all saved pages
    document.getElementById("calculateTotalTime").addEventListener("click", () => {
        tracker.stopTracking().then(() => {
            tracker.calculateTotalTime().then((times) => {
                console.log("Total Times:", times);
            });
        });
    });

    // Button to finish interaction the app
    document.getElementById("finishApp").addEventListener("click", () => {
        tracker.deleteIndexDB();
    });

});

Additional Notes

  • Ensure the elements with IDs exportData and calculateTotalTime exist in your HTML to use the corresponding buttons.

  • Consider handling possible errors and edge cases, such as when no data is available in IndexedDB.

With this setup, you should be able to easily track screen time, export data, and calculate total times for all the pages visited by the user.

Authors ✒️

  • Jonathan Amaya - Systems Engineer - Web Developer - TatanLion

Acknowledgments 🎁

  • Tell others about this project 📢
  • Buy a beer 🍺 or a coffee ☕ for someone on the team.
  • Give thanks publicly 🤓.
  • etc.

⌨️ with ❤️ by TatanLion 😊