Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

timer-for-pomodoro

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timer-for-pomodoro

Simple and effective solution to integrate Pomodoro timers into your applications.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Timer for Pomodoro Technique

This module provides a timer for use in Pomodoro technique apps. The Pomodoro technique is a time management method that involves breaking work into time intervals, typically 25 minutes long, separated by short breaks.

Installation

To install the Timer module, you can execute the following command:

npm install timer-for-pomodoro

Usage

Here's a basic example of how you can use the Timer class in your code:

const Timer = require('timer-for-pomodoro');

// Create a Timer instance with desired time values
const timer = new Timer(25, 5, 4); // 25 minutes of work, 5 minutes of break, 4 rounds

// Subscribe to timer events
timer.subscribe((currentTime) => {
  console.log(currentTime);
});

// Start the timer
timer.start();

This example creates a Timer instance with 25 minutes of work, 5 minutes of break, and 4 rounds. Then, it starts the timer and subscribes to events to print the current timer state to the console. Additionally, methods are provided to stop, pause, and advance to the next timer state.

API

new Timer(workTime, breakTime, rounds)

Constructor for the Timer class. Creates a new Timer instance with the specified work, break, and round times.

  • workTime: Work time in minutes.
  • breakTime: Break time in minutes.
  • rounds: Number of work-break rounds.

start()

Starts the timer.

stop()

Stops the timer.

pause()

Pauses the timer in its current state.

next()

Advances to the next timer state (work or break).

subscribe(listener)

Allows subscribing to timer events. The listener argument is a function that will be called each time the timer state changes, passing the current timer state as an argument. Returns the current timer state as an object.

Contribution

Contributions are welcome. If you encounter any issues or have any improvements, feel free to open an issue or submit a pull request on GitHub.

License

This module is under the MIT License. See the LICENSE file for more details.

Keywords

FAQs

Package last updated on 01 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc