start icon indicating copy to clipboard operation
start copied to clipboard

Sinatra inspired web development framework for Dart

Results 5 start issues
Sort by recently updated
recently updated
newest added

I've needed WebApp process manager like PM2 for dart. If it does not exist a similar package, I have to make it for Start web framework. Benjamin Jung ( [email protected]...

I've already commented on WebSocket v0.4.0 at #73. But, I've changed the onMessage() into onMessage (stream object). ---------------------------------------------------------- app.ws('/socket').listen((socket) { socket.onMessage.listen((data) { print('data: $data'); socket.send(data); }); socket.onOpen.listen((ws) { print('new socket...

Add patch for #73, #76, #78.

I needed CORS support for my project. Thus I've made an experimental Start web framework. All code is at https://github.com/bsjung/start_examples/blob/master/jwt/server/server.dart. At first, I've added "cors" option at start(). ------------------------------------------------- void...

I've tested the JSON request for my project. This is my dart client is at https://github.com/bsjung/start_examples/blob/master/jwt/server/client.dart. The header is set to {'Content-Type': "application/json"}. But, the most client software appends to...