Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up
for free
Micro Web Frameworks in .NET
Vlad Iliescu
March 11, 2012
Programming
2
300
Micro Web Frameworks in .NET
The demo source code is available at
https://bitbucket.org/vladiliescu/the-little-blog-that-could
.
Vlad Iliescu
March 11, 2012
Tweet
Share
More Decks by Vlad Iliescu
See All by Vlad Iliescu
vladiliescu
0
14
vladiliescu
1
1.6k
vladiliescu
1
1.5k
vladiliescu
0
1.6k
vladiliescu
0
8
vladiliescu
0
37
vladiliescu
0
54
vladiliescu
0
1.9k
vladiliescu
1
330
Other Decks in Programming
See All in Programming
ntaro
0
170
yoshinoriiiii
0
110
pluu
0
570
hyodol2513
0
630
legalforce
PRO
0
640
selcukusta
2
110
layzee
1
220
sters
2
140
satoshun
0
100
legalforce
PRO
0
650
konstantin_diener
0
130
voyage_tech
0
120
Featured
See All Featured
addyosmani
494
110k
jonyablonski
19
1.2k
mojombo
359
62k
keathley
20
710
jcasabona
8
550
jlugia
217
16k
michaelherold
225
8.5k
edds
56
9.4k
chrislema
231
16k
orderedlist
PRO
328
36k
hannesfritz
28
950
malarkey
119
16k
Transcript
None
None
require 'sinatra' get 'hi' do "Hello World!" end
None
None
None
None
using Nancy; public class HelloModule : NancyModule { public HelloModule()
{ Get["/"] = r => "Hello CodeCamp!"; } }
None
PM> Install-Package Nancy.Hosting.Aspnet using Nancy; public class HelloModule : NancyModule
{ public HelloModule() { Get["/"] = r => "Hello CodeCamp!"; } }
None
None
None