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

@nanomatic/fsm

v1.6.1

Published

Implementation of the Finite State Machine

Downloads

13

Readme

Status License


📝 Table of Contents

🏁 Getting Started

Installing

npm i @nanomatic/fsm

Using

Example code below:

import { State, StateMachine } from '@nanomatic/fsm';

/*
    Three states. Steps:
    1. All devices turned off.
    2. Lamp turned on after three seconds (simulated user operation).
    3. Motor turned on after another three seconds.
    4. Go to the step 1 after ten seconds from beginig.

    FSM will be paused after 4 seconds from the start.
    Another 4 seconds to resume.
*/

// Time in s
const hundredMiliseconds = .1;
const threeSeconds = 3;
const fourSeconds = 4;
const eightSeconds = 8;
const fiveteenSeconds = 15;

// Types
interface Data {
    lamp: boolean;
    motor: boolean;
    start: boolean;
}

// Variables
let showLogs = true;
const data: Data = {
    lamp: false,
    motor: false,
    start: false
};

// Helper function
const allSwitchOff = () => {
    data.lamp = false;
    data.motor = false;
    showLogs = false;
};

// States
const allOff = new State;
const lampOn = new State(() => data.lamp = true);
const motorOn = new State({ entry: () => data.motor = true, exit: allSwitchOff });

console.log(`Total number of states: ${State.states}`);

// State machine
// const fsm = new StateMachine(allOff);                        // Step 1 (immediately)
const fsm = new StateMachine<Data>(allOff);                     // Step 1 (immediately)

// Transitions
allOff.addTransition(lampOn, ({ start }: Data) => start);       // Step 2 (after three seconds)
lampOn.addTransition(motorOn);                                  // Step 3 (automatic flow after another three seconds)
lampOn.time = threeSeconds;                                     // When time is equal to zero then transition fire imiditly
// lampOn.time = () => threeSeconds;
fsm.addCommonState(allOff, [], ({ start }: Data) => !start);    // Step 4 (after ten seconds from beginig)

// Program cycle (100 ms)
setInterval(() => fsm.step(data), hundredMiliseconds);

// Only for data simulation
setTimeout(() => data.start = true, threeSeconds * 1000);       // Step 2 (after three seconds)
setTimeout(() => data.start = false, fiveteenSeconds * 1000);   // Step 4 (after ten seconds from beginig)
const programInterval = setInterval(() => {
    // tslint:disable-next-line: no-console
    console.log(`Lamp: ${data.lamp}\tMotor: ${data.motor}\tStart: ${data.start}\tRemaining time: ${fsm.state.timer.remainingTime.toFixed(3)}s`);
    if (!showLogs)
        clearInterval(programInterval);
}, hundredMiliseconds * 1000);

setTimeout(() => fsm.pause(), fourSeconds * 1000);              // Pause after 4 seconds
setTimeout(() => fsm.resume(), eightSeconds * 1000);            // Resume after next 4 seconds

⛏️ Built With

📦 Dependencies

✍️ Authors

🎉 Acknowledgments

  • Special thanks for Sebastian for working together and giving ideas 😉