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 🙏

© 2026 – Pkg Stats / Ryan Hefner

js-task-runner

v0.0.14

Published

A task runner for javascript. It gives you the ability to run javascript files on date/time/interval basis

Downloads

22

Readme

js-task-runner

A job scheduler and runner for node.js

First configure your tasks.json file. Which must be saved in the project root (just above your node_modules folder)

{
  "test1": {
    "file": "testTask.js",
    "options": {
      "time": {
        "hrs": [0,6,12,18,19,20,21,22,23]
      },
      "daysOfWeek": ["mon","tue","wed","fri"],
      "daysOfMonth": [1,2,3,4,5,6],
      "months": ["feb","mar"]
    }
  },
  "test2": {
    "file": "testTask2.js",
    "options": {
      "interval": 20000
    }
  }
}

This is where your tasks will be configured. You have the following options:

  • file - the file being run
  • options it is either an interval task or a datetime task. If an interval it is in milliseconds. If it is a datetime task options has the following options
    • hrs - an array of numbers. Can be 0-23
    • daysOfWeek - an array of strings. Can be mon, tue, wed, thu, fri, sat, sun
    • daysOfMonth - an array of numbers. Can be 1-31
    • monts: an array of strings. Can be jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec

js-task-runner implements node-thread-storm for its multithreading. Each task is run in its own thread.

To create a task you simple need to module.exports a function from a js file. Which must be saved in the project root (just above your node_modules folder). It will be passed two arguments. sessionData and parent. Parent is the node-thread-storm object managing the thread. When you task is done simply call parent.completed() Ex:

module.exports = function(sessionData,parent) {
  setTimeout(function() {
    parent.completed();
  },10000);
};

Finally to run js-task-runner simply:

npm install js-task-runner

create a file with this content:

require("js-task-runner");

then run: node fileName