Getting Started

Before learning about how to write a hypermedia API, let’s start by running the existing one. To do this best, you should start up the API and the client api.

The live demo:

todo api

Run demo server and client

Install dependencies

Clone the git repo and install dependencies

git clone git://github.com/semanticlink/todo-rest-api

All dependencies are documented in this Readme and include:

Start applications

  1. Start the database.

Start the database in a docker container

docker run -p 8000:8000 -it --rm instructure/dynamo-local-admin`

You can view this in a browser on http://localhost:8000

  1. Build and run the project with the following environment variables.
    ASPNETCORE_ENVIRONMENT: Development
    ASPNETCORE_URLS: http://localhost:5000

Restore the package dependencies with dotnet commandline (or through the IDE)

cd api
dotnet restore

Run the Api project through the IDE (eg Rider)

Exec Path: Api/bin/Debug/netcoreapp2.1/Api.dll
Working Directory: ./api/Api
Environment Variables: ASPNETCORE_ENVIRONMENT=Development;ASPNETCORE_URLS=http://localhost:5000
  1. Build and run the client commandline with yarn (or through the IDE, eg WebStorm).

Run the client

cd client
yarn install
yarn dev

It will open a browser in http://localhost:8080

  1. Browse the API

Open the browser in http://locahost:5000

open http://localhost:5000

At some stage, you will need to authenticate. The credentials are at the top of the page.

Next Chapter

Modelling Domain

Learn how to diagram the API textually and get also get visual output

Go to next chapter