JSPM

  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q47568F
  • License GPL-3.0-only

ATA.js is a programmatic life cycle system for Javascript and typescript.

Package Exports

  • ata.js
  • ata.js/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ata.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ATA.JS Javascript life cycle system

Example:

''js ((ATA)=>{

ATA.Setups.push(()=>{
    // it works for only 1 time
});

ATA.Loops.push(()=>{
    // it works forever, 1 time for a second.
});

})(require("ata.js")());

ATA.Inject("./ss.js",{console}, []);

return;

''

``bash

npx ata_init

``