Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
0.14.0 source code.tar.gz | 2023-05-12 | 274.5 kB | |
0.14.0 source code.zip | 2023-05-12 | 286.9 kB | |
0.14.0.tar.gz | 2023-05-12 | 274.5 kB | |
0.14.0.zip | 2023-05-12 | 286.9 kB | |
README.md | 2023-05-12 | 661 Bytes | |
Totals: 5 Items | 1.1 MB | 0 |
New Path Param Syntax 🎴
{arg:type}
-> $arg:type
But old stynax available still
Optional And Default Path Params ✨
{arg?:type}
or $arg?:type
can match some or nothing. Its has default value depend on type
{arg:type=val}
or $arg:type=val
will work like without =val
but default value is val
.
Added a new bool
type for path params also.
Default Type In Path Params 🍍
{arg}
or $arg
will create string variable
Its just alias for {arg:string}
New Alternative HTTP Server ⚡
microasynchttpserver uses when you compile with -d:micro