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

node-task-runner

v2.4.1

Published

A promise-based dependency-free task runner for Node.

Downloads

146

Readme

Node-Task-Runner

NPM

A promise-based dependency-free task runner for Node. This library was inspired by the Start-Runner.

Installation

npm install node-task-runner

CLI

  Usage: ntr [options] <tasks> -- [arguments]

  Options:

    --file=<file>      tasks file path, tasks.js by default
    --parallel         execute tasks in parallel rather than in sequence

Task definition

const tasks = {};

tasks.task1 = (reporter) => {
  return new Promise((resolve) => {
    setTimeout(() => {
      resolve("test chain value");
    }, 1000);
  });
};

tasks.task2 = (reporter, chainValue, arg1, arg2) => {
  reporter(`[chainValue: ${chainValue}, arg1: ${arg1}, arg2: ${arg2}]`);
  return new Promise((resolve) => {
    setTimeout(() => {
      resolve();
    }, 5000);
  });
};

module.exports = {
  tasks: tasks,
  reporter: (m) => console.log(m)
};

You have to export all tasks that should be available. The name of the function is used as task name. All tasks should return a Promise. If they do not, the behavior is the same as Promise.resolve().

The reporter function which is passed to all tasks as first argument should be used to emit output to the command line. This is important in parallel mode to avoid mixed up task output. The runner collects all output submitted through the reporter function and emits all if a task finishes. In non-parallel mode the output is emitted immediately as console.log would do. The reporter function can be set with an export in the tasks-file as shown above. console.log will be the default-value if no reporter is exported.

In sequential mode previously resolved values, are passed to the next task function as second parameter. This feature is not available in parallel mode. In the above example, "task2" would receive "test chain value" as chainValue if "task1" was executed before. If no value was resolved undefined is passed.

The given task arguments from the cli are passed to all tasks as separate variables.

Messages of this library are colored, if chalk is installed.

Run tasks manually

const ntr = require('node-task-runner');

...

tasks.task3 = (reporter) => {
  return Promise.all([ntr.runTask("task1", true), ntr.runTask("task2", true)]);
};

...

Run functions manually

const ntr = require('node-task-runner');

...

tasks.task3 = (reporter) => {
  return Promise.all([ntr.runFunction("func1", () => { /* do something */ }, true), ntr.runFunction("func2", () => { /* do something */ }, true)]);
};

...

You could run other tasks or functions sequentially or parallel from another task too. The last argument indicates if console outputs should be collected and emitted on task-end or if they should be printed immediately. Default value is false.

License