Hi all,
What do you say for new version of Rest Client for Google Chrome? :)
This is a snapshot of dev version of the app:
It will be faster than current version and it will be totally redesigned. I've added some new features that should help you with your work.
The new version is witted in pure javascript this time. I left GWT behind because for HTML5 features it was a pain in an ass. Now I'm using Bootstrap framework. Mostly for pretty nice styles, out of the box.
I hope you'll enjoy new UI and new set of functionality. I think I've done a lot of good job regarding UX.
It's still under development and there is a lot of work to do. RC version should be available in the end of September. I'm hoping that final version will be ready in middle October.
Give me a feedback what you think about this proposition. I know that it is only one screenshot and only small part of the app but you can see a direction of changes.
P.S.
I'm not planning to maintain server side of the application anymore. It means that the only way to save and share your data is either save it to file (locally) or save and share it on Google Drive.
If you have any data on application's server you should restore it on your app and save it on Google Drive.
Happy RESTing!
Showing posts with label server. Show all posts
Showing posts with label server. Show all posts
Saturday, 31 August 2013
Monday, 22 October 2012
Testing sockets
Since latest version of the application you can test socket messaging as well. It is simple implementation of the web socket API.For server implementation you can use for example the ws module for node.js.
Below is sample server side code:
var WebSocketServer = require('ws').Server
, wss = new WebSocketServer({port: 8080});
console.log('Starting server');
wss.on('connection', function(ws) {
console.log('user is connected');
ws.send('user connected. Welcome.');
ws.on('message', function(message) {
console.log('received: %s', message);
ws.send('Response to ' + message);
});
ws.on('disconnect', function() {
console.log('user disconnected');
});
});
Happy codding!
Thursday, 9 February 2012
Applications server version.
Hi,
Lately I worked about application performance. I did a lot of improvements, but it is not a subject of this post.
I like to announce that server side application is working from now at http://chromerestclient.appspot.com/
After you log in you can view all data that you've sent to server and delete it if you need.
On this site you can remove all your data as well (including connection to your Google account).
If you have any suggestions write email to me or create issue ticket at http://code.google.com/p/chrome-rest-client/issues/list
Cheers!
Lately I worked about application performance. I did a lot of improvements, but it is not a subject of this post.
I like to announce that server side application is working from now at http://chromerestclient.appspot.com/
After you log in you can view all data that you've sent to server and delete it if you need.
On this site you can remove all your data as well (including connection to your Google account).
If you have any suggestions write email to me or create issue ticket at http://code.google.com/p/chrome-rest-client/issues/list
Cheers!
Subscribe to:
Posts (Atom)
