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

stark-sequencer

v1.1.0

Published

A scheduler and monitor for soft real-time as a TypeScript esm module.

Downloads

9

Readme

Soft Real-Time Sequencer in TypeScript

Build and test status NPM version

Library that allows users to schedule a list of changes to a Vuex(v.3) store's state. Can optionally sync with a server that is running timesync. An esm module written in TypeScript, tested in the browser but it should also run on the server.

Getting Started

npm install stark-sequencer

Usage and Options

import { StarkSequencer } from "stark-sequencer";

// Default options. Will sync from the page's URL/timesync by default.
let options = {
    isSync: false,
    host: "",
    path: "timesync"
  };
StarkSequencer.init({options});

// Monitor a time-based process like a movie or audio track.
let mockTrackTime = 0;
let monitor = StarkSequencer.monitor({
    length: 30e3,  // Used for automatic destruction at the end. Default: 10 min.
    pollCallback: () => mockTrackTime,  // Get the time from the track.
    start: Date.now() + 5e3, // Start at the synched time. Default: starts immediately.
    pollInterval: 2e2,  // In milliseconds, min 15ms. Default: 100ms.
    diffInterval: 30,  // Margin of error in milliseconds. Default: 100ms.

    // Update the store's time even if 
    // the polled time matches the monitored time.
    // Default: false.
    isForceUpdate: true,
    isRepeat: false   // Control for looping. Default: false.
  });

// Execute mutations on the Vuex store.
let executor = StarkSequencer.execute({
    init: { x: 0, y: 0 },  // The initial object state. Default: {}.

    // Events sequence.
    events: [
      {time: 200, value: { x: 20, y: 0 }},
      {time: 400, value: { x: 20, y: 40 }},
      {time: 600, value: { x: 40, y: 40 }},
      ...etc
    ],
    buffer: 50, // Number of buffered events. Default: 100.
    start: Date.now() + 5e3, // Start at the synched time. Default: starts immediately.

    // In milliseconds. Optional, min 15ms. 
    // Default = 15ms < min time between events / 2 < 150ms.
    pollInterval: 2e2,
    isRepeat: true  // Control for looping. Default: false.
  });

Results

Watch for changes, the user can use a framework like Vue to update the DOM.

let currentTime = Date.now();

// Output
// time: Current prescribed and synched time.
// startTime: Synchronized time for the beginning of the sequence.
// updateTime: Time of last update.
// isEnd:  Flag can be set for premature kill signal, or set when the sequence is finished.
monitor.state.subscribe((mutation, state) => {
  mockTrackTime = state.time;  // This would scrub the media in a real use case.

  // If you enabled sync, an updated offset value in ms can be accessed here.
  let offset = StarkSequencer.offsetPointer.offset;

  console.log(`Time: ${state.updateTime - currentTime - offset}, Value: ${mockTrackTime}`);
});

// Output
// value: Current state.
// startTime: Synchronized time for the beginning of the sequence.
// updateTime: Time of last update.
// isEnd: Flag can be set for premature kill signal, or set when the sequence is finished.
executor.state.subscribe((mutation, state) => {
  
  // If you enabled sync, an updated offset value in ms can be accessed here.
  let offset = StarkSequencer.offsetPointer.offset;

  console.log(`Time: ${state.updateTime - currentTime - offset}, Value: ${state.value}`);
});

Destroy

monitor.delete();
executor.delete();