Wednesday, July 3, 2024

Meteor Timers

Meteor is a full-stack JavaScript platform that is used for developing modern web and mobile applications. Meteor has a set of features that are helpful in creating a responsive and reactive web or mobile application using JavaScript or different packages available in the framework. It is used to build connected-client reactive applications.

Meteor keeps track of things like the current request’s user via global environment variables. The timer module provides a global API for scheduling functions to be executed at a later time. They function similarly to setTimout and setInterval as in JavaScript but in Meteor, Meteor.setTimeout should be used instead of setTimeout, and Meteor.setInterval should be used instead of setInterval.

Syntax:

Meteor.setTimeout(function() {
   ...
}, 1000);

Creating Meteor Application And Importing Module:

Step 1: Create a React application using the following command.

meteor create foldername

Step 2: After creating your project folder i.e. foldername, move to it using the following command.

cd foldername

Step 3: Import Meteor module from ‘meteor/meteor’

import { Meteor } from 'meteor/meteor'

Project Structure: It will look like the following.

Step to Run Application: Run the application from the root directory of the project, using the following command.

meteor

Example: This is the basic example that shows how to use the Timers component.

Main.html




<head>
    <title>gfg</title>
</head>
  
<body>
    {{> timer}}
</body>
  
<template name="timer">
    <h1 class="heading">neveropen</h1>
    <p>
        The timer is running and printing 
        a count from 1 to 10 in the console 
        log every second.
    </p>
  
</template>


Main.js




import { Meteor } from 'meteor/meteor';
import './main.html';
  
let count = 0;
  
for (let i = 1; i <= 10; i++) {
    var watch = Meteor.setTimeout(function () {
        // for (let j = 0; j < 1; j++) {
        console.log(i);
        // }
    }, 1000 * i);
}


Output:

Reference: https://docs.meteor.com/api/timers.html

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Thapelo Manthata
I’m a desktop support specialist transitioning into a SharePoint developer role by day and Software Engineering student by night. My superpowers include customer service, coding, the Microsoft office 365 suite including SharePoint and power platform.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments