You should already have Composer installed.

For the latest version of willow use:

composer create-project ryannerd/willow:^2 [your-project-name]
cd [your-project-name]

For the previous version of Willow use:

composer create-project ryannerd/willow:^1.1 [your-project-name]
cd [your-project-name]

For Linux/Mac from the terminal run:

./willow sample
# **This will open your web browser at:**localhost:8088/v1/sample/hello-world

Windows users run:

vendor\\bin\\robo sample

# In a browser go to: localhost:8088/v1/sample/hello-world

The result should look something like this:

{
  "authenticated": true,
  "success": true,
  "status": 200,
  "data": {
    "id": "hello-world"
  },
  "missing": [ ],
  "message": "Sample test",
  "timestamp": 1556903905
}