Web Node Build - Task runner orchestrator

About

A Task runner (orchestrator) is a build tool that permits to run all kind of task (generally build operations) in serie or parallel.

Task Runner vs Bundler

A task runner works on a stream of file selected from the file system while a bundler will work on files selected from the dependency graph.

As they don't work on a dependency graph, they don't support dependency graph related task such as:

They can still perform most of the build operations such as transpiling, minification, bundling.

List





Discover More
Javascript - Toolchain (Build tools)

This page is building/shipping in the context of Javascript A JavaScript build toolchain typically consists of: A package manager to install and update package such as yarn, npm. A bundler (such...
Web - Build Operations / Build Pipeline

This page is the build operation for the web. A build pipeline will: transform (compile) bundle and optimize web code html, css (less, ...) Javascript (Javascript Module, React Jsx,...
Web - Bundler

Web - Bundler A bundler is a web build tool that * from a javascript entry file * get all dependent files * performs the build operations configured. * and outputs only one file: the bundle *...
Web - Gulp Builder

Gulp is a task orchestrator that can: serve as bundler or just wrap them in a task. /gulpjs/gulp/blob/master/docs/getting-started.mdgetting-started Gulp streams gulpjs/vinylvinyl file
Web Building - Grunt

grunt is a task runner that permits to perform build operations. Install node Install the Grunt CLI. It will run the version of Grunt...



Share this page:
Follow us:
Task Runner