nyny icon indicating copy to clipboard operation
nyny copied to clipboard

a (ridiculously) small and powerful web framework.

Results 2 nyny issues
Sort by recently updated
recently updated
newest added

``` require 'nyny' class Ping < NYNY::App get '/' do #this will be accessbile at '/ping' 'pong' end end class App < NYNY::App get '/' do 'Hello' end # You...