Note | ||
---|---|---|
| ||
As of July 25th, 2023, there is a content freeze on this page. |
Profound.js provides built-in capabilities to call any IBM i command through the use of the pjs.runCommand() API.
The command can be a batch process or an interactive command with a user interface. The output from greengreen-screen commands is automatically transformed into HTML5. This capability is provided by Genie.
For example, the following line of code within your Node.js module will display the system's Work with Spooled Files interface.
Code Block | ||
---|---|---|
| ||
pjs.runCommand("WRKSPLF"); |
...