Socket
Socket
Sign inDemoInstall

@chisel/ease

Package Overview
Dependencies
54
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @chisel/ease

A minimal task runner with scheduling capabilities.


Version published
Maintainers
1
Install size
6.28 MB
Created

Readme

Source

Ease Task Runner

Ease is a minimal task runner with scheduling capabilities designed to be flexible and easy to work with.

Installation

npm install @chisel/ease -g

Quick Start

  1. Create the following file in project root:
    easeconfig.js:
module.exports = ease => {
  ease.task('task1', () => {
    // Perform task
  });
  ease.job('job1', ['task1']);
};
  1. Run job1 through the CLI command: ease job1
  2. Read the official documentation to learn how to schedule jobs, install/create plugins, and all the other benefits Ease has to offer.

FAQs

Last updated on 14 Feb 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc