How To Build A REST Web API On A Raspberry PI in JavaScript
How To Build A REST Web API On A Raspberry PI in JavaScript
Raspberry PI in JavaScript
May 8, 2013 by Ceeb 31 Comments
One of the most useful reasons for providing your Raspberry Pi with a REST
API is to expose its inputs and outputs to a web client (on any iPhone, laptop
or desktop PC anywhere in the world) for remote monitoring and/or control.
This is part 1 of a 2 part blog showing how to implement a REST API in
JavaScript.
Whats REST ?
In recent years, the Web has turned from a network of webservers serving
mainly static pages to web browsers
into a full client-server architecture, where single-page client web apps use
AJAX principles to communicate with server-side applications, increasingly
via simple but powerful RESTful APIs.
$.getJSON("http://www.myapiserver.com/books/ISBN/Cat
ch-22", function(data) {
console.log("The ISBN for this book is "+data );
});
The HTTP reply our server sends back to the client is the raw result data
not embedded inside an HTML page, not XML-encoded, just the data you
need in a way you can immediately use a String or a JSON object you can
use directly.
With REST, a simple network connection is all you need. You can even test
the API directly, by typing the API URL into your browser. For instance, try
entering the API call http://api.exip.org/?call=ipdirectly in your browser; the
API server at api.exip.org will return the public IP address of your machine
(not the same as the private IP address issued to your PC by your Routers
DHCP service, which you will see when you run ifconfig at the command
line, or displayed in your network settings). Or try out the twitter API by
enteringhttps://api.twitter.com/1/statuses/home_timeline.json?
include_entities=true in your browser. Because you havent included a key in
your request, you will see an authentication error response in the browser
window, encoded as a JSON object, which looks something like this:
{"errors":[{"message":"Bad Authentication
data","code":215}]}
As you may have noticed in these examples, REST can easily handle more
complex requests, including multiple parameters. In most cases, youll just
use HTTP GET parameters in the URL.
For example, if we can only uniquely specify a book by both title and author,
our API might accept a request like this: http://myapiserver/books/ISBN?
title=Catch-22&author=Heller
To install Node.JS on your Raspberry Pi, see my earlier Blog post HOW
TO INSTALL NODE.JS ON A RASPBERRY PI
On the Raspberry Pi, we need to use the Node Package Manager npm to
download and install the other modules we will need to build our web
application. We will be using the express web application framework module
initially, and also the connect module it depends on.
On your RPi, create a new directory for your project, and download the node
modules youll need as follows :
$ mkdir myapp
$ cd myapp
$ npm init
$ npm install express --save
$ npm install connect --save
Or use the -g flag if you prefer the package to be installed globally, i.e.
in /usr/local where node is installed, rather than in./node_modules. To install
global packages, you need to use sudo to execute with superuser priviledges.
The node package manager will download and install the express framework.
app.listen(3000);
console.log('App Server running at port 3000');
Finally, using another machine on the same local network, open a web
browser and navigate to your App Server hosted on the RPi.
If your RPi has the local IP address 192.168.0.22, you would enter this in your
browser:
http://192.168.0.22:3000
This will cause the browser to load your index.html file from your RPi, which
then loads your javascript client code in myclient.js.
If youre in luck, this should appear in your browser window:
Whats Next ?
One of the most useful reasons for providing your Raspberry Pi with a
RESTful API is to expose its input and output ports to web clients for remote
monitoring and control.
So in our next exercise, we will do just this, exposing the real GPIO I/O ports
through a RESTful API, which will allow you to control your Pis inputs and
outputs from any smartphone or PC wherever you are in the world.
Next
I hope this exercise has been useful. If you have any feedback or spot any
errors or omissions, feel free to leave a note in the comments section below.