Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month ago
JSON representation
[wip] Concept of Sinatra-like simple Web App Framework in P6 🦋🐯
- Host: GitHub
- URL: https://github.com/astj/p6-sixatra
- Owner: astj
- License: artistic-2.0
- Created: 2017-02-27T20:20:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T14:36:38.000Z (over 7 years ago)
- Last Synced: 2024-10-10T21:40:14.578Z (about 1 month ago)
- Topics: concept, perl6, wip
- Language: Perl6
- Homepage:
- Size: 23.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.