Например так:
event(click) ->
?DEBUG,
wf:replace(button, #panel {
body="You clicked the button!",
actions=#effect { effect=highlight }
}).
Будете кликать, будете получать debug-сообщение в консоль.
Или так:
inner_body() ->
?PRINT(node()),
[
#h1 { text="Welcome to my ERL-TASTIC WEBSITE!" },
#p{},
"
If you can see this page, then your Nitrogen server is up and
running. Click the button below to test postbacks.
",
#p{},
#button { id=button, text="Click me!", postback=click },
#p{},
"
Run <b>./bin/dev help</b> to see some useful developer commands.
"
].
Будет сообщение в консоль при каждом открытии страницы, к тому же содержать название ноды.