The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Nephia::Plugin::JSON - A plugin for Nephia that provides JSON Response DSL

SYNOPSIS

    use Nephia plugins => ['JSON'];
    app {
        json_res +{ 
            name  => 'ytnobody',
            birth => '1980-11-11',
        };
    };

DESCRIPTION

Nephia::Plugin::JSON provides three DSL that is about JSON.

DSL

json_res $hashref

Returns a Nephia::Response that contains application/json contents.

encode_json $hashref

Returns JSON string of encoded hashref.

decode_json $json_str

Returns hashref of decoded JSON.

LICENSE

Copyright (C) ytnobody.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

ytnobody <ytnobody@gmail.com>