I continually have a problem in development where it's hard to actually interact with the API because of all the OAuth stuff. I'd like to write a pump-repl or something which would basically get you a vanilla Node.js REPL, except that it'd have a bunch of convenience wrappers for requests. So you could do something like e.g. http.get('/api/users/testuser) or something and that would automatically send the request to the right server and wrapped with the right OAuth signatures.
I continually have a problem in development where it's hard to actually interact with the API because of all the OAuth stuff. I'd like to write a
pump-repl
or something which would basically get you a vanilla Node.js REPL, except that it'd have a bunch of convenience wrappers for requests. So you could do something like e.g.http.get('/api/users/testuser
) or something and that would automatically send the request to the right server and wrapped with the right OAuth signatures.