Git Product home page Git Product logo

batchler's Introduction

Batchler

Batchler.js is a tool I created to help me manage personal libraries of commonly used client-side functions. The tool allows me to group together sets of queries I need executed synchronously or asynchronously. I can then string these groupings together. For example:

Let's say I'm setting up an application to manage billable hour time logs. Let's look at the unordered list of tasks that might be involved:

  • Create an application: Billables
  • Create a table: Time Logs
  • Add a date field to the Time Logs table: Date
  • Add a number field to the Time Logs table: Hours
  • Add a currency field to the Time Logs table: Rate
  • Add a currency field to the Time Logs table: Total
  • Add a note field to the Time Logs table: Summary of work

I have 7 tasks above. Some are dependent upon one another, and some are not. Let's look at how these might be grouped into an ordered list:

  1. Create an application: Billables
  2. Create a table: Time Logs
  3. Add fields to the Time Logs table:
    • Add a date field to the Time Logs table: Date
    • Add a number field to the Time Logs table: Hours
    • Add a currency field to the Time Logs table: Rate
    • Add a currency field to the Time Logs table: Total
    • Add a note field to the Time Logs table: Summary of work

Using Batchler.js you can add tasks 1 and 2 to a sync. request executer (exec1), and the remaining tasks from task 3 into an async. request executer (exec2). Then you can set the exec1 executer to execute exec2 when all items are complete.

This can come in handy if you are commonly developing similar applications using common APIs.

batchler's People

Contributors

mikegfisher avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.