5.0.2 • Published 5 years ago

izymodtask v5.0.2

Weekly downloads
10
License
MIT
Repository
github
Last release
5 years ago

izymodtask

Node.js modtask component for Izyware.

INSTALLATION

If you are using npm (the Node.js package manager) always ensure that your npm is up-to-date by running:

npm update -g npm

Then use:

npm install izymodtask

USING THE TOOL

This tool provides libraries for traditional modtask izyware apps. You may use the libraries by referencing the node_modules folder.

When integrating izyware modtask style components to native node runtime apps and you need to ldmod on a module, you can:

var mod = require('izymodtask').getRootModule().ldmod('path_to_module');

To see what the module resolution paths are for the context that you are using the code above, you can always use:

require('izymodtask').getRootModule().ldmod('s_root').cmdlineverbs.sysview();

If you need to launch cmdline based verbs from the node app, use the following syntax:

require('izymodtask').runCmd('sysview -- or your verb --')

When the verb is called inside the g_handler module, you can extract the command line config by:

modtask.cmdlineverbs.method = function() {
   var config = modtask.ldmod('izymodtask/index').extractConfigFromCmdLine('method');
	 ...

You can customize the izyware modtask search path by creating the following:

modtask/config/kernel/extstores/file.js

in the root of your node app.

NOTE

for more details, visit https://izyware.com

Known Issues

  • fix izymodtask so that it does not eval ljs in index.js.

Change Log

  • relrequire is now available
    • it will allow doing node style require using relative paths to the current izy module.
    • this will alleviate the paths and search problems that customers have reported in the past
5.0.2

5 years ago

5.0.1

5 years ago

5.0.0

5 years ago

2.0.0

6 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

8 years ago

1.0.15

8 years ago

1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago