roslibjs [](https://travis-ci.org/RobotWebTools/roslibjs) ========
npm install roslibzyroslibjs 
========
#### The Standard ROS JavaScript Library
For full documentation, see the ROS wiki or check out some working demos.
JSDoc can be found on the Robot Web Tools website.
This project is released as part of the Robot Web Tools effort.
Alternatively, you can use the current release via the Robot Web Tools CDN: (full) | (min)
1. Check that connection is established. You can listen to error and
connection events to report them to console. See
examples/simple.html for a complete example:
ros.on('error', function(error) { console.log( error ); });
ros.on('connection', function() { console.log('Connection made!'); });
1. Check that you have the websocket server is running on
port 9090. Something like this should do:
netstat -a | grep 9090
roslibjs has a number of dependencies. You will need to run:
npm install or bower install
Depending on your build environment.