justinfagnani / route

A client + server routing library for Dart
BSD 3-Clause "New" or "Revised" License
114 stars 40 forks source link

Allow multiple HTTP methods in serve() #51

Open sethladd opened 10 years ago

sethladd commented 10 years ago

CORS often fires an OPTIONS and then a POST. I'd like to say server(url, methods: ['OPTIONS', 'POST'])

Thanks!