Hanko backend provides an HTTP API to build a modern login and registration experience for your users. Its core features are an API for passkeys (WebAuthn), passwords, and passcodes, as well as JWT management.
Hanko backend can be used on its own or in combination with hanko-js, a powerful frontend library that contains polished and customizable UI flows for password-based and passwordless user authentication that can be easily integrated into any web app with as little as two lines of code.
- Passkeys (WebAuthn)
- Passcodes
- Passwords
- Email verification
- JWT management
- User management
- Exponential backoff for password attempts and passcode email sending
- 2FA configurations (optional, mandatory)
The easiest way to start Hanko backend service is through docker. But before we can do that, we need to create a config file.
Note If you just want to jump right into the experience of passkeys and passcodes, head over to the quickstart guide.
Create a file with the name config.yaml
and paste the config from below. Fill out the parameters marked with <CHANGE-ME>
and, if you have access to an SMTP server, fill out the corresponding parameters with the information of your SMTP server.
If you don't know how to fill the webauthn config, see here.
database:
user: <CHANGE-ME>
password: <CHANGE-ME>
host: <CHANGE-ME>
port: <CHANGE-ME>
dialect: postgres
passcode:
email:
from_address: [email protected]
smtp:
host: <CHANGE-ME>
user: <CHANGE-ME>
password: <CHANGE-ME>
secrets:
keys:
- <CHANGE-ME>
service:
name: Next Unicorn Authentication Service
webauthn:
relying_party:
id: <CHANGE-ME>
display_name: <CHANGE-ME>
origin: <CHANGE-ME>
Note You need to change the smtp config to start the service. You can enter any host, user and password, they will not be checked for correctness at startup. But be aware that no emails will be sent and your users might not be able to login if no valid smtp server is set up.
Note
secrets.keys
must be a random generated string at least 16 characters long.
Before you can start and use the service you need to run the database migrations:
docker run --mount type=bind,source=<PATH-TO-CONFIG-FILE>,target=/config/config.yaml -p 8000:8000 -it ghcr.io/teamhanko/hanko:main migrate up
Note The
<PATH-TO-CONFIG-FILE>
must be an absolute path to your config file created above.
To start the service just run:
docker run --mount type=bind,source=<PATH-TO-CONFIG-FILE>,target=/config/config.yaml -p 8000:8000 -it ghcr.io/teamhanko/hanko:main serve public
Note The
<PATH-TO-CONFIG-FILE>
must be an absolute path to your config file created above.
The service is now available at localhost:8000
.
To build the Hanko backend you only need to have go installed on your computer.
go build -a -o hanko main.go
This command will create an executable with the name hanko
, which then can be used to start the Hanko backend.
Before you can start and use the service you need to run the database migrations:
./hanko migrate up --config <PATH-TO-CONFIG-FILE>
Note The path to the config file can be relative or absolute.
To start the service just run:
./hanko serve public --config <PATH-TO-CONFIG-FILE>
The service is now available at localhost:8000
.
In the usage section above we only started the public API. Use the command below to start the private API. The default
port is 8001
, but can be customized in the config.
serve private
Use this command to start the public and private API together:
serve all
Warning The private API must be protected by an access management system.
Hanko backend supports the following databases:
- CockroachDB
- MariaDB
- MySQL
- PostgreSQL
Currently, Hanko backend does not implement rate limiting in any way. In production systems, you may want to hide the Hanko service behind a proxy or gateway (e.g. Kong, Traefik) that provides rate limiting.
All available configuration parameters can be found here.
The API specification can be found here.
The hanko backend ist licensed under the AGPL-3.0.