Licence : MIT
Run npm install to setup dependencies
npm install
Run node app.js
node app.js
Then the app will be available on port 10000. You can modify it in the app.js file.
You can start SMS with a daemon, ou simply use the command:
nohup node app.js > output.log &
It will run SMS in background and send all output into the output.log file
To stop it, get the PID of the process with
ps aux | grep "node"
Get the PID (here is 12345) and kill it
kill -9 12345
This program is a node.js learning project, not a full featured release. Feel free to improve or modify it.