Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/astj/p6-sixatra

[wip] Concept of Sinatra-like simple Web App Framework in P6 🦋🐯
https://github.com/astj/p6-sixatra

concept perl6 wip

Last synced: 6 days ago
JSON representation

[wip] Concept of Sinatra-like simple Web App Framework in P6 🦋🐯

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/astj/p6-Sixatra.svg?branch=master)](https://travis-ci.org/astj/p6-Sixatra)

NAME
====

Sixatra - Sinatra-like simple Web Application Framework

SYNOPSIS
========

unit module MyApp;
use Sixatra;

get '/', -> $c {
200, [], ['hello'];
};

And run MyApp with crustup as follows:

crustup -e 'use Sixatra; sixatra-app("MyApp");'

DESCRIPTION
===========

Sixatra is ...

AUTHOR
======

Asato Wakisaka

COPYRIGHT AND LICENSE
=====================

Copyright 2017 Asato Wakisaka

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.