Automaton
Task automation tool built in JavaScript.
Why?
You often find yourself needing to do some repetitive operation, and this is usually the time to quickly bake some ad-hoc script. Still, from project to project you find yourself needing to reuse some task you had already previously created.
Automaton eases this process, allowing you to quickly set up an autofile
, which describes what you want to do, by means of an ordered list of tasks that need to run for the task as a whole to be complete.
A little detail that makes Automaton a powerful tool, is that every autofile
you create can itself be used by another autofile
, turning the first one into a single task (imagine boxes within boxes). If you are curious, you can take a look at the source code, and check for yourself that even the tasks that Automaton provides built-in are simple autofiles
.
Built-in tasks
automaton
comes bundled with a few tasks to ease your own tasks.
ROADMAP
Note that we're working on having support for gruntjs
tasks, so you can use them just like native automaton
tasks.
Filesystem
- chmod: Change mode of files
- cp: Copy files and directories
- mv: Move files and directories
- mkdir: Make directories recursively
- rm: Remove several files or directories
- symlink: Create symlink
Scaffolding
Scaffolding tasks help you perform some typical tasks, like appending, replacing, and others, to placeholders in a template file. Any text file can be a template. These tasks will look for a {{placeholder_name}}
inside the file, and perform the operation on it.
- scaffolding-append: Append something to a placeholder in a file
- scaffolding-replace: Replace the placeholder with something
- scaffolding-close: Close the placeholder (effectively removing the placeholder)
- scafolding-file-rename: Rename files by replacing placeholders found in their names
Miscellaneous
- run: Run a shell command
- init: Initialise an empty autofile
- uglify (soon)
- minify (soon)
- concat (soon)
Installing
You can simply install Automaton through NPM, by running npm install -g automaton
. This will install Automaton globally, and you will be able to execute automaton
in your terminal.
If you only plan to use automaton
programatically, you can just install it locally.
Creating a task
An automaton task is a simple object, describing what the task will do.
Simple task
For illustration purposes, here's a simple autofile
that just creates a folder and copies a file into it:
var myTask = {
tasks: [
{
task: 'mkdir',
description: 'Create the project root folder',
options: {
dirs: ['some_dir']
}
},
{
task: 'cp',
description: 'Copy some file',
options: {
files: {
'some_file': 'some_dir/dest_file'
}
}
}
]
};
module.exports = myTask;
More complete task
To illustrate most of the capabilities of automaton
, here's a complete autofile
with comments along the file:
var task = {
id: 'example_task',
name: 'Example task',
author: 'Indigo United',
description: 'My example task',
filter: function (options, next) {
options.dir2 = options.dir2 + '_indigo';
options.dir3 = 'united';
next();
},
options: {
dir1: {
description : 'The name of the folder ' +
'that will hold ' +
'all the subfolders'
},
dir2: {
'default': 'automaton'
},
run_all: {
'default': false
}
},
tasks: [
{
task: 'mkdir',
description: 'Create the root and second folder',
options: {
dirs: ['{{dir1}}/{{dir2}}']
}
},
{
task: 'mkdir',
on: '{{run_all}}',
description: 'Creating other folder',
options: {
dirs: ['{{dir1}}/{{dir2}}/{{dir3}}']
}
},
{
task : function (opt, ctx, next) {
ctx.log.infoln('I can do whatever I want', opt);
next();
},
on: function (opt) {
return !!opt.run_all;
}
}
]
};
module.exports = task;
Note that placeholders can be escaped with backslashes:
'\\{\\{dir1\\}\\}'
Inline functions
If you find yourself trying to do something that is not supported by the existing tasks, you can just provide a function, instead of the task name, and it will be used as the task.
This task will receive 3 arguments, an options object (the options that were provided to the subtask), a context object (more on this later), and a callback that must be called once the subtask is over, giving you full flexibility, since your function can do whatever you like.
The second argument, the context, is used to provide you with a tool belt that will aid you while developing automaton
tasks. It currently provides you a log
object, which is an instance of Logger, and can be used to handle logging. Using the automaton
logger is preferred to using the traditional console.*
methods, since it gives additional control over logging to whoever is running the task.
The Logger
provides the following methods:
- Information logging:
info()
, infoln()
- Warnings logging:
warn()
, warnln()
- Error logging:
error()
, errorln()
- Success logging:
success()
, successln()
- Debug logging:
debug()
, debugln()
(These will only be outputted when in debug mode)
The ln variants of each method output a new line (\n
) in the end. Note that these methods work just like your typical console.*
methods, so you can pass multiple arguments, and they will all get logged.
Here's an example usage:
'use strict';
var inspect = require('util').inspect;
var task = {
id: 'bogus',
tasks: [
{
task: function (opt, ctx, next) {
ctx.log.infoln(
'hello,',
'here\'s the process',
inspect(process)
);
next();
}
}
]
};
module.exports = task;
Loading tasks
Once you start building your own tasks, you will probably find yourself wanting to use some custom task within another task you're working on. In order to do this, you have a few options, depending on how you are using automaton.
If you are using automaton
in the CLI, you have the --task-dir
. This tells automaton to load all the tasks in that folder, making them available to you, just like the built-in tasks.
If you are using automaton
programatically, you have a bigger range of possibilities:
-
Run automaton.loadTasks(/some/folder/with/tasks)
. This is the equivalent to what you would to in the CLI, with the exception that you can call this multiple times, loading multiple folders.
-
require()
the task yourself, just like you would with any NodeJS
module, and then call automaton.addTask(your_task)
. Just like loadTasks()
, this will make the task you just added available on automaton
as if it is a built-in task.
-
require()
the task in the task that depends on it, and use it directly in the subtask list, where you would typically put a task name, or an inline function.
Usage
CLI
All you need to use the CLI can be found by executing automaton -h
. This will show you how to use automaton
, and any of the loaded tasks.
In order to run an autofile
, you simply run automaton
. This will look for autofile.js
in the current working dir. Instead, you can also run automaton some_dir/my_autofile.js
, enabling you to specify what autofile
you want to run.
Node.js
automaton
can also be used programatically as a node module. Here's a quick example of its usage:
var automaton = require('automaton').create();
var myTask = require('my_autofile');
automaton.run(myTask, { 'some_option': 'that is handy' }, function (err) {
if (err) {
console.log('Something went wrong: ' + err.message);
} else {
console.log('All done!');
}
});
Logging
automaton.run()
returns a readable stream that is used for outputting log information. The depth of this log can be controlled by a verbosity
option, provided upon instantiation.
There are also a few other options. Here's a full list:
- verbosity: Controls the depth of the log. Remember the box in a box analogy? This controls how many boxes deep you want to go, regarding logging information.
- 0: no logging
- 1: 1 level deep (default)
- n: n levels deep
- -1: show all levels
- debug: If you want to receive debug logging messages.
false
by default. - color: If you want the logging information to contain colors.
true
by default.
Here's an example of the usage of the stream, with custom options:
var automaton = require('automaton').create({
verbosity: 3,
debug: true,
color: false
});
automaton
.run('run', { cmd: 'echo SUCCESS!' })
.pipe(process.stdout);
As you can see, we've tweaked all the automaton
options, and even piped the logging information to STDOUT
. What you do exactly with the stream, it's completely up to you.
Acknowledgements
Should be noted that this tool was inspired by already existing tools, and you should definitely take a look at them before deciding what is the right tool for the job at hand:
To these guys, a big thanks for their work.
Also, big thanks to Ricardo Pereira, for his awesome work with the mascot.
Contributing
Should be noted that Automaton is an open source project, and also work in progress. Feel free to contribute to the project, either with questions, ideas, or solutions. Don't forget to check out the issues page, as there are some improvements planned.
Thanks, and happy automation!
License
Released under the MIT License.