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
``