I don't know of a module that supports Google Cloud Endpoints but creating one should be possible. As there is a sample JavaScript client that accesses a Google Cloud Endpoint backend, you would just need to port the browser specific pieces to instead use basic node modules like http to make the needed requests. In the end it is just sending out HTTP requests which node can easily do. Some of the lower level pieces that are needed may already exist as there are modules for working with other Google APIs: https://npmjs.org/browse/keyword/google
-- Daniel R. <[email protected]> [http://danielr.neophi.com/] On Mon, Feb 18, 2013 at 4:05 AM, harikrishna patadiya < [email protected]> wrote: > I am trying to communicate with GAE (through Google Endpoints to be > precise) but not through the means of a browser. Rather, through a console > like cygwin. However, cygwin, or any other console does not recognize some > javascript commands. > > To focus on a specific part of the question, I just want to communicate > and get data for my query. That's it. This is for administrative tasks for > my app which may include gathering data about top 10 "things" or how many > times a user modifies their "thing" or how popular it is among their > friends, etc. > > > On Sunday, February 17, 2013 9:07:48 AM UTC-8, Daniel R. wrote: > >> It isn't clear to me what you are trying to accomplish. Do you have an >> existing application that is running on GAE that you want to communicate? >> Are you trying to develop a Node.js application that will run on GAE? Are >> you trying to use one of the GAE services like Cloud SQL? >> >> >> -- Daniel R. <[email protected]> [http://danielr.neophi.com/] >> >> >> On Sat, Feb 16, 2013 at 8:14 PM, harikrishna patadiya < >> [email protected]> wrote: >> >>> Is there a library which would let us communicate with google app engine >>> in console (like cygwin preferably) through node.js? >>> >>> I need to load a google api javascript file before I can run a function >>> in my javascript, however node can run only one javascript at once. So I am >>> trying to load the google javascript inside my javascript (using >>> document.createElement("**script")) >>> >>> But console doesn't recognize "document.createElement" because it is not >>> a console command. Is there a work around this? >>> >>> Thanks in advance >>> >>> -- >>> -- >>> Job Board: http://jobs.nodejs.org/ >>> Posting guidelines: https://github.com/joyent/**node/wiki/Mailing-List-* >>> *Posting-Guidelines<https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines> >>> You received this message because you are subscribed to the Google >>> Groups "nodejs" group. >>> To post to this group, send email to [email protected] >>> >>> To unsubscribe from this group, send email to >>> nodejs+un...@**googlegroups.com >>> >>> For more options, visit this group at >>> http://groups.google.com/**group/nodejs?hl=en?hl=en<http://groups.google.com/group/nodejs?hl=en?hl=en> >>> >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "nodejs" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to nodejs+un...@**googlegroups.com. >>> >>> For more options, visit >>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out> >>> . >>> >>> >>> >> >> -- > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "nodejs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
