I am using SailsJS
for an application. From front-end i.e. NodeWebkit
user will be entering a command which will be sent to server via sockets.
This command is parsed in back-end and a specific service/controller is called.
Socket code is as follows :
socket.on('command', {'command':'user -a -n abhishek -p 123456'})
I am using JISON
for command-line parsing which gets all options in command with their values.
Are there any command parsers better than JISON which I can use here.
Thanks in Advance