title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.workload | ms.tgt_pltfrm | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Node.js API app in Azure App Service | Microsoft Docs |
Learn how to create a Node.js RESTful API and deploy it to an API app in Azure App Service. |
app-service\api |
node |
bradygaster |
wpickett |
a820e400-06af-4852-8627-12b3db4a8e70 |
app-service-api |
web |
na |
node |
get-started-article |
05/26/2016 |
rachelap |
[!INCLUDE app-service-api-get-started-selector]
This tutorial shows how to create a simple Node.js API and deploy it to an API app in Azure App Service by using Git. You can use any operating system that can run Node.js, and you'll do all your work using command line tools such as cmd.exe or bash.
- Microsoft Azure account (open a free account here)
- Node.js installed (this sample assumes that you have Node.js version 4.2.2)
- Git installed
- GitHub account
While App Service supports many ways to deploy your code to an API app, this tutorial shows the Git method and assumes that you have basic knowledge of how to work with Git. For information about other deployment methods, see Deploy your app to Azure App Service.
-
Open a command line interface that can run Node.js and Git commands.
-
Navigate to a folder that you can use for a local Git repository, and clone the GitHub repository containing the sample code.
git clone https://github.com/Azure-Samples/app-service-api-node-contact-list.git
The sample API provides two endpoints: a Get request to
/contacts
returns a list of names and email addresses in JSON format, while/contacts/{id}
returns only the selected contact.
Swagger is a file format for metadata that describes a RESTful API. Azure App Service has built-in support for Swagger metadata. This section of the tutorial models an API development workflow in which you create Swagger metadata first and use that to scaffold (auto-generate) server code for the API.
Note
You can skip this section if you don't want to learn how to scaffold Node.js code from a Swagger metadata file. If you want to just deploy sample code to a new API app, go directly to the Create an API app in Azure section.
-
Execute the following commands to install the yo and generator-swaggerize NPM modules globally.
npm install -g yo npm install -g generator-swaggerize
Swaggerize is a tool that generates server code for an API described by a Swagger metadata file. The Swagger file that you'll use is named api.json and is located in the start folder of the repository you cloned.
-
Navigate to the start folder, and then execute the
yo swaggerize
command. Swaggerize will ask a series of questions. For what to call this project, enter "ContactList", for path to swagger document, enter "api.json", and for Express, Hapi, or Restify, enter "express".yo swaggerize
Note: if you encounter an error in this step, the next step explains how to fix it.
Swaggerize creates an application folder, scaffolds handlers and configuration files, and generates a package.json file. The express view engine is used to generate the Swagger help page.
-
If the
swaggerize
command fails with an "unexpected token" or "invalid escape sequence" error, correct the cause of the error by editing the generated package.json file. In theregenerate
line underscripts
, change the back slash that precedes api.json to a forward slash, so that the line looks like the following example:"regenerate": "yo swaggerize --only=handlers,models,tests --framework express --apiPath config/api.json"
-
Navigate to the folder that contains the scaffolded code (in this case, the /start/ContactList subfolder).
-
Run
npm install
.npm install
-
Install the jsonpath NPM module.
npm install --save jsonpath
-
Install the swaggerize-ui NPM module.
npm install --save swaggerize-ui
-
Copy the lib folder from the start folder into the ContactList folder created by the scaffolder.
-
Replace the code in the handlers/contacts.js file with the following code.
This code uses the JSON data stored in the lib/contacts.json file that is served by lib/contactRepository.js. The new contacts.js code responds to HTTP requests to get all of the contacts and return them as a JSON payload.
'use strict'; var repository = require('../lib/contactRepository'); module.exports = { get: function contacts_get(req, res) { res.json(repository.all()) } };
-
Replace the code in the handlers/contacts/{id}.js file with the fofllowing code.
'use strict'; var repository = require('../../lib/contactRepository'); module.exports = { get: function contacts_get(req, res) { res.json(repository.get(req.params['id'])); } };
-
Replace the code in server.js with the following code.
The changes made to the server.js file are called out by using comments so you can see the changes being made.
'use strict'; var port = process.env.PORT || 8000; // first change var http = require('http'); var express = require('express'); var bodyParser = require('body-parser'); var swaggerize = require('swaggerize-express'); var swaggerUi = require('swaggerize-ui'); // second change var path = require('path'); var app = express(); var server = http.createServer(app); app.use(bodyParser.json()); app.use(swaggerize({ api: path.resolve('./config/swagger.json'), // third change handlers: path.resolve('./handlers'), docspath: '/swagger' // fourth change })); // change four app.use('/docs', swaggerUi({ docs: '/swagger' })); server.listen(port, function () { // fifth and final change });
-
Activate the server using the Node.js command-line executable.
node server.js
-
When you browse to http://localhost:8000/contacts, you see the JSON output of the contact list (or you're prompted to download it, depending on your browser).
-
When you browse to http://localhost:8000/contacts/2, you'll see the contact represented by that id value.
-
The Swagger JSON data is served via the /swagger endpoint:
-
The Swagger UI is served via the /docs endpoint. In the Swagger UI, you can use the rich HTML client features to test out your API.
In this section you use the Azure portal to create a new API App in Azure. This API app represents the compute resources that Azure will provide to run your code. In later sections you'll deploy your code to the new API app.
-
Browse to the Azure Portal.
-
Click New > Web + Mobile > API App.
-
Enter an App name that is unique in the azurewebsites.net domain, such as NodejsAPIApp plus a number to make it unique.
For example, if the name is
NodejsAPIApp
, the URL will benodejsapiapp.azurewebsites.net
.If you enter a name that someone else has already used, you see a red exclamation mark to the right.
-
In the Resource Group drop-down, click New, and then in New resource group name enter "NodejsAPIAppGroup" or another name if you prefer.
A resource group is a collection of Azure resources such as API apps, databases, and VMs. For this tutorial, it's best to create a new resource group because that makes it easy to delete in one step all the Azure resources that you create for the tutorial.
-
Click App Service plan/Location, and then click Create New.
In the following steps, you create an App Service plan for the new resource group. An App Service plan specifies the compute resources that your API app runs on. For example, if you choose the free tier, your API app runs on shared VMs, while for some paid tiers it runs on dedicated VMs. For information about App Service plans, see App Service plans overview.
-
In the App Service Plan blade, enter "NodejsAPIAppPlan" or another name if you prefer.
-
In the Location drop-down list, choose the location that is closest to you.
This setting specifies which Azure datacenter your app will run in. For this tutorial, you can select any region and it won't make a noticeable difference. But for a production app, you want your server to be as close as possible to the clients that are accessing it to minimize latency.
-
Click Pricing tier > View All > F1 Free.
For this tutorial, the free pricing tier will provide sufficient performance.
-
In the App Service Plan blade, click OK.
-
In the API App blade, click Create.
You'll deploy your code to the API app by pushing commits to a Git repository in Azure App Service. In this section of the tutorial, you create the credentials and Git repository in Azure that you'll use for deployment.
-
After your API app has been created, click App Services > {your API app} from the portal home page.
The portal displays the API App and Settings blades.
-
In the Settings blade, scroll down to the Publishing section, and then click Deployment credentials.
-
In the Set deployment credentials blade, enter a user name and password, and then click Save.
You'll use these credentials for publishing your Node.js code to your API app.
-
In the Settings blade, click Deployment source > Choose Source > Local Git Repository, then click OK.
-
Once your Git repository has been created the blade changes to show you your active deployments. Since the repository is new, you have no active deployments in the list.
-
Copy the Git repository URL. To do this, navigate to the blade for your new API App and look at the Essentials section of the blade. Notice the Git clone URL in the Essentials section. When you hover over this URL, you see an icon on the right that will copy the URL to your clipboard. Click this icon to copy the URL.
Note: You will need the Git clone URL in the next section so make sure to save it somewhere for the moment.
Now that you have an API App with a Git repository backing it up, you can push code into the repository to deploy the code to the API app.
In this section you create a local Git repository that contains your server code for the API, and then you push your code from that repository to the repository in Azure that you created earlier.
-
Copy the
ContactList
folder to a location that you can use for a new local Git repository. If you did the first part of the tutorial, copyContactList
from thestart
folder; otherwise, copyContactList
from theend
folder. -
In your command line tool, navigate to the new folder, then execute the following command to create a new local Git repository.
git init
-
Execute the following command to add a Git remote for your API app's repository.
git remote add azure YOUR_GIT_CLONE_URL_HERE
Note: Replace the string "YOUR_GIT_CLONE_URL_HERE" with your own Git clone URL that you copied earlier.
-
Execute the following commands to create a commit that contains all of your code.
git add . git commit -m "initial revision"
-
Execute the command to push your code to Azure. When you're prompted for a password, enter the one that you created earlier in the Azure portal.
git push azure master
This triggers a deployment to your API app.
-
In your browser, navigate back to the Deployments blade for your API app, and you see that the deployment is occurring.
Simultaneously, the command line interface reflects the status of your deployment while it is happening.
Once the deployment has completed, the Deployments blade reflects the successful deployment of your code changes to your API App.
-
Copy the URL in the Essentials section of your API App blade.
-
Using a REST API client such as Postman or Fiddler (or your web browser), provide the URL of your contacts API call, which is the
/contacts
endpoint of your API app. The URL will behttps://{your API app name}.azurewebsites.net/contacts
When you issue a GET request to this endpoint, you get the JSON output of your API app.
-
In a browser, go to the
/docs
endpoint to try out the Swagger UI as it runs in Azure.
Now that you have continuous delivery wired up, you can make code changes and deploy them to Azure simply by pushing commits to your Azure Git repository.
At this point you've successfully created an API App and deployed Node.js API code to it. The next tutorial shows how to consume API apps from JavaScript clients, using CORS.