Getting Started with DAML

The goal of this tutorial is to get you up and running with full-stack DAML development. We do this through the example of a simple social networking application, showing you three things:

  1. How to build and run the application
  2. The design of its different components (App Architecture)
  3. How to write a new feature for the app (Your First Feature)

We do not aim to be comprehensive in all DAML concepts and tools (covered in Writing DAML) or in all deployment options (see Deploying). For a quick overview of the most important DAML concepts used in this tutorial open the DAML cheat-sheet in a separate tab. The goal is that by the end of this tutorial, you’ll have a good idea of the following:

  1. What DAML contracts and ledgers are
  2. How a user interface (UI) interacts with a DAML ledger
  3. How DAML helps you build a real-life application fast.

With that, let’s get started!

Prerequisites

Please make sure that you have the DAML Connect SDK, Java 8 or higher, and Visual Studio Code (the only supported IDE) installed as per instructions from our Installing the SDK page.

You will also need some common software tools to build and interact with the template project.

  • Git version control system
  • Node package manager for JavaScript. Note: On Ubuntu 18.04, NodeJS 8.10 will be installed but its too old.
  • A terminal application for command line interaction

Running the app

We’ll start by getting the app up and running, and then explain the different components which we will later extend.

First off, open a terminal and instantiate the template project.

daml new create-daml-app --template create-daml-app

This creates a new folder with contents from our template. To see a list of all available templates run daml new --list.

Change to the new folder:

cd create-daml-app

We can now run the app in two steps. You’ll need two terminal windows running for this. In one terminal, at the root of the create-daml-app directory, run the command:

daml start

Any commands starting with daml are using the DAML Assistant, a command line tool in the SDK for building and running DAML apps.

You will know that the command has started successfully when you see the INFO  com.daml.http.Main$ - Started server: ServerBinding(/127.0.0.1:7575) message in the terminal. The command does a few things:

  1. Compiles the DAML code to a DAR file.
  2. Generates a JavaScript library in ui/daml.js to connect the UI with your DAML code.
  3. Starts an instance of the Sandbox, an in-memory ledger useful for development, loaded with our DAR.
  4. Starts a server for the HTTP JSON API, a simple way to run commands against a DAML ledger (in this case the running Sandbox).

We’ll leave these processes running to serve requests from our UI.

In a second terminal, navigate to the create-daml-app/ui folder and use npm to install the project dependencies:

cd create-daml-app/ui
npm install

This step may take a couple of moments (it’s worth it!). You should see success Saved lockfile. in the output if everything worked as expected.

Now you can start the UI with:

npm start

This starts the web UI connected to the running Sandbox and JSON API server. The command should automatically open a window in your default browser at http://localhost:3000. Once the web UI has been compiled and started, you should see Compiled successfully! in your terminal. If it doesn’t, just open that link in a web browser. (Depending on your firewall settings, you may be asked whether to allow the app to receive network connections. It is safe to accept.) You should now see the login page for the social network. For simplicity of this app, there is no password or sign-up required. First enter your name and click Log in.

Login screen for the create-daml-app

You should see the main screen with two panels. One for the users you are following and one for your followers. Initially these are both empty as you are not following anyone and you don’t have any followers! Go ahead and start following users by typing their usernames in the text box and clicking on the Follow button in the top panel.

Main view of the create-daml-app

You’ll notice that the users you just started following appear in the Following panel. However they do not yet appear in the Network panel. This is either because they have not signed up and are not parties on the ledger or they have not yet started followiong you. This social network is similar to Twitter and Instagram, where by following someone, say Alice, you make yourself visible to her but not vice versa. We will see how we encode this in DAML in the next section.

In the create-daml-app users can follow each other in a similiar fashion as in Twitter or Instagram

To make this relationship reciprocal, open a new browser window/tab at http://localhost:3000. (Having separate windows/tabs allows you to see both you and the screen of the user you are following at the same time.) Once you log in as the user you are following - Alice, you’ll notice your name in her network. In fact, Alice can see the entire list of users you are follwing in the Network panel. This is because this list is part of the user data that became visible when you started follwing her.

In the create-daml-app when you start following somone you reveal the list of people you are following

When Alice starts follwing you, you can see her in your network as well. Just switch to the window where you are logged in as yourself - the network should update automatically.

In the create-daml-app when the user you are following follows you back s/he reveals the list of people they are following

Play around more with the app at your leisure: create new users and start following more users. Observe when a user becomes visible to others - this will be important to understanding DAML’s privacy model later. When you’re ready, let’s move on to the architecture of our app.

Tip

Congratulations on completing the first part of the Getting Started Guide! Join our forum and share a screenshot of your accomplishment to get your first of 3 getting started badges! You can get the next one by implementing your first feature.