ape-tasking

4.0.12 • Public • Published

ape-tasking

Build Status npm Version JS Standard

ape framework module for tasks

Usage

Run Tasks

.runTasks(taskName, tasks, exitWhenDone)

#!/usr/bin/env node
 
'use strict'
 
const apeTasking = require('ape-tasking')
 
// Run tasks
apeTasking.runTasks('myCustomTask', [
  // Run callback base task
  (callback) => {
    /* ... */
    callback(null) // Pass error if failed.
  },
  // Run promise base task
  () => new Promise((resolve, reject) => {
    /* ... */
    resolve()
  })
], true)
 

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i ape-tasking

Weekly Downloads

244

Version

4.0.12

License

MIT

Unpacked Size

27.2 kB

Total Files

24

Last publish

Collaborators

  • okunishinishi