To see packages available: nexss pkg list
. To see help for individual Package nexss Nexss help
Packages are just Nexss Programmer Projects which are located in the .nexss/packages/ folder and if you run for example nexss App/Run
it will search for ./nexss/packages/App/Run folder for _nexss.yml and run this project..
Package/Nexss Programmer project if is put on the ./nexss/packages folder become .nexss command.
List of all Nexss Programmer predefined packages
All packages help can be shown by nexss <packageName> help
eg. nexss Id help
nexss Id # returns unique id
nexss Id --fields=cuid # returns only field cuid
nexss Blender
nexss Clipboard # receive clipboard value nexss Clipboard help for more
nexss Convert/VideoToGif --file=myfile.mp4
nexss Input/OCR --file=myimage.jpg
nexss Keyboard --type="#s" # WIN + s
nexss Keyboard --type="#d" # WIN + d / Show Desktop
nexss Keyboard --type="#b" # WIN + b / Show Taskbar
nexss Mouse/Move --x=1 --y=20
nexss Mouse/MoveToImage --image=1
nexss Nexss/PackageBrowser
nexss Select/Area # After selecting area returns selection coordinates X1,Y1,X2,Y2
nexss Screen/Capture --file=123123.png # OR as below PIPE
nexss System/Env/EnsurePath --EnvPathAdd c:\x74\php\
Below doesn't work as there is an issue with npm-link and powershell as not passing stdin..
# This does not work yet as there is an issue with npm-link and powershell as not passing stdin..
echo '{"file":"myfile.jpg"}' | nexss Mouse/MoveToImage # Powershell echo json
echo {"file":"myfile.jpg"} | nexss Mouse/MoveToImage # Batch version