Getting started with LoopBack and SQL Server

duffn
4 min readMar 23, 2015

--

In this tutorial, we’ll talk about getting started with LoopBack and SQL Server. We’ll create an API using an existing SQL Server table as the backend. Let’s jump right in.

Prerequisites

  • You have Node.js installed
  • You have some version of SQL Server installed

SQL Server

You know SQL Server.

SQL Server is Microsofts RDMS offering for OLTP, data warehousing, business intelligence and analytics.

The data

We’re going to be using an existing SQL Server table in our database. This should be a very common scenario when working with LoopBack and SQL Server as you are likely not creating your tables in SQL Server specifically while creating your LoopBack application.

We’ll use the excellent generatedata.com site to seed our table with 100 rows.

Alright, now that we have our already existing table example setup, let’s move on to LoopBack.

LoopBack

LoopBack is a highly-extensible, open-source Node.js framework

LoopBack allows you to do many things like:

  • Quickly create dynamic end-to-end REST APIs.
  • Connect devices and browsers to data and services.
  • Use Android, iOS, and AngularJS SDKs to easily create client apps.
  • Add-on components for push, file management, 3rd-party login, and geolocation.
  • Use StrongLoop Arc to visually edit, deploy, and monitor LoopBack apps.
  • LoopBack API gateway acts an intermediary between API consumers (clients) and API providers to externalize, secure, and manage APIs.
  • Runs on-premises or in the cloud

We are going to use LoopBack to:

  • Connect to our SQL Server database.
  • Discover the schema of our already existing table and create a LoopBack model based upon the schema.
  • Create a REST based API using this model.

Install LoopBack

Before we do any of that, let’s walk through the very simple steps needed to install LoopBack.

Well that was easy! Now let’s scaffold our new LoopBack API application.

Run the LoopBack application generator and answer a few quick questions.

After the generator runs and npm installs all the necessary packages, you’ll receive a message like this.

The only thing left for us right now is to install a database connector for our application so that we can connect to SQL Server. Loopback offers a number of different connects, but we want loopback-connector-mssql.

Connect to SQL Server

Now we need to point our LoopBack application to our SQL Server. In your loopback-sqlserver-example directory, open up the server/datasources.js file. Initially there is only a listing for the in-memory database, but we want to add a reference to our SQL Server.

Edit the file to look like this, of course, replacing with your SQL Server host, username and password.

Now we’re ready to build our LoopBack model for our SQL Server table.

LoopBack table model

LoopBack uses JSON models to define tables in the application. While we could create the JSON by hand, we want to use our already existing table to automatically generate it for us. Thankfully LoopBack offers the discoverSchema method which will auto generate the JSON for us based upon our already existent SQL Server table.

Create a server/discover.js file and put in this code.

First we get a reference to our app and then to the mySqlServer data source we created in the datasource.js file. Then we tell LoopBack to go get the schema of our table and output the JSON model to the console.

Run this script and you’ll get LoopBack’s JSON model representation of your table.

Cool! LoopBack just autogenerated a model of our contacts table based upon the already existing table.

Let’s get that model integrated into our app. We need to create two files to represent our contacts table in LoopBack.

The JSON file will hold our model definition and JavaScript file will export our model. There are more uses for the JavaScript file which we’ll get into in future posts.

First, copy the JSON we generated above into the contacts.json file.

Next, drop this simple code into the contacts.js file.

That’s it for creating our LoopBack model. Now we can tell LoopBack to use our model in the API.

Create the API

We need to tell LoopBack to use our newly created Contact model in the API. To do so, we open up server/model-config.json and add an entry for our model.

model-config.json already has some definitions in it for the LoopBack base models. We’ll add our Contacts model at the end. Note that we set “public”: true to tell LoopBack to expose our model via the API.

Run the API

Now it’s time to fire up our API!

Browse to http://localhost:3000/explorer to see your API in action. Try to retrieve some data using the explorer and you can see that we have an working API!

Conclusion

It doesn’t take much to get an API up and running with LoopBack, even if you need to connect to and discover and already existing table in SQL Server — or in any database for that matter!

--

--

duffn
duffn

Written by duffn

I write about Python, Go, Node.js, cloud infrastructure, and data. https://duffn.github.io

Responses (3)