[nodejs] Re: Node.js - RESTful Services

2014-12-09 Thread Raymond Feng
Sorry for the late reply. You should check out http://loopback.io/. Some of the ideas are inspired by JAX-RS and we try to make it easy to build REST apis using Node. Thanks, Raymond On Wednesday, November 26, 2014 10:38:16 PM UTC-8, raghvenders raghvenders wrote: > > Can Node.js been seen as

[nodejs] Oracle development with node

2014-06-28 Thread Raymond Feng
Hi, Glenn. You should check out LoopBack (loopback.io). We have a few modules supporting Oracle development in Node. 1. strong-oracle: The Node driver for Oracle databases. 2. loopback-connector-oracle: The Oracle connector for loopback-datasource-juggler, which is ORM that supports MySQL, Pos

[nodejs] Re: Alternative to DNode (RPC)?

2014-06-10 Thread Raymond Feng
You can try: https://github.com/strongloop/strong-remoting It supports both REST and JSONRPC. On Monday, June 9, 2014 2:49:37 PM UTC-7, Alexey Petrushin wrote: > > DNode is very cool library (especially with Fibers - magically your remote > calls looks like usual local calls), but I have two is

[nodejs] [ANN] LoopBack API framework adds support for social login and account linking

2014-06-03 Thread Raymond Feng
We’re excited to announce that the LoopBack API framework now supports: - Third-party login, to enable your LoopBack apps to allow login using existing accounts on Facebook, Google, Twitter, or Github. - Integration with enterprise security services so that users c

[nodejs] Re: jasmine test cases for a SOAP server

2014-05-07 Thread Raymond Feng
https://github.com/vpulim/node-soap has the server support to mock a service in node. On Wednesday, May 7, 2014 10:08:22 AM UTC-7, Reza Razavipour wrote: > > Right now my soap calls are so deeply nested into my REST routes, I think > I have to start pulling those out, and make them more accessib

[nodejs] [ANN] PostgreSQL Connector for Loopback

2014-05-07 Thread Raymond Feng
StrongLoop is pleased to announce the 1.0.0 release of the LoopBack PostgreSQL Connector, that enables LoopBack powered applications to access PostgreSQL databases. The PostgreSQL connector is a new member of the LoopBack connector fa

Re: [nodejs] [ANN] Turn your SOAP services into REST APIs with LoopBack

2014-04-24 Thread Raymond Feng
@googlegroups.com ] *On Behalf Of *Raymond Feng > *Sent:* Thursday, April 24, 2014 12:57 PM > *To:* nod...@googlegroups.com > *Subject:* [nodejs] [ANN] Turn your SOAP services into REST APIs with > LoopBack > > > > The LoopBack <http://loopback.io> project just rele

[nodejs] [ANN] Turn your SOAP services into REST APIs with LoopBack

2014-04-24 Thread Raymond Feng
The LoopBack project just released a new connector for legacy SOAP web services. It allows Node.js applications to consume SOAP web services using JSON and further exposes them as REST APIs. You can find more information from the blog below: http://strongloop.com/strongblo

[nodejs] Re: Any ORM suggestion for this requirement?

2014-04-13 Thread Raymond Feng
Hi, I suggest that you check out the LoopBack project which comes with a power ORM for populate data stores such as MongoDB, MySQL, Oracle, and PostgreSQL. 1. You can define ACLs to control access based on the model/property. 2. You can create 'dynamic' roles to do reco

[nodejs] [ANN] Managing Objects in LoopBack with the Storage Provider of Your Choice

2014-04-08 Thread Raymond Feng
For those who need Node.js and/or REST APIs for files with your choice of storage providers, LoopBack now offers a storage service. http://strongloop.com/strongblog/managing-nodejs-loopback-storage-service-provider/ Thanks, Raymond -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

[nodejs] Re: What do I use for my client side development?

2014-03-21 Thread Raymond Feng
Hi, Bob. I think you should try out LoopBack - https://github.com/strongloop/loopback. LoopBack is an open source API framework built on top of Express optimized for mobile and web. It allows you to connect to multiple data sources, write business logic in Node.js, glue on top of your existing

[nodejs] Re: How to reuse object

2014-03-20 Thread Raymond Feng
You should check out https://github.com/strongloop/strong-oracle. It was initially folked from node-oracle. strong-oracle supports connection pooling. You can find an example at: https://github.com/strongloop/strong-oracle/blob/master/example/app.js On Thursday, March 20, 2014 4:42:52 PM UTC-7

[nodejs] Re: how to perform an action at a set frequency?

2014-02-24 Thread Raymond Feng
Do you access a database via the SOAP/WS API? If so, what SOAP Node.js library do you use? Thanks, Raymond On Wednesday, February 19, 2014 9:14:35 AM UTC-8, Reza Razavipour wrote: > > this a soap server connection and I do not see a way to do what you are > recommending? Am i missing it? > > >

Re: [nodejs] Re: ORM for Express.JS

2014-01-28 Thread Raymond Feng
Please checkout https://github.com/strongloop/loopback-datasource-juggler. The project provides the integration backbone for https://github.com/strongloop/loopback to expose enterprise data as REST/mobile APIs. It was initially folked from JugglingDB. Since then, we have added a lot of enhance

[nodejs] Re: access mysql/ms sql database with nodes in html5

2013-12-12 Thread Raymond Feng
For a MySQL driver for node, check this out: https://github.com/felixge/node-mysql To use an ORM or model driven APIs, check out: https://github.com/strongloop/loopback https://github.com/strongloop/loopback-connector-mysql Thanks, Raymond On Thursday, December 12, 2013 2:07:14 AM UTC-8, Chand

[nodejs] Re: Node.js ODM for Couchbase

2013-11-21 Thread Raymond Feng
The LoopBack project already provides an ODM for many data sources. You can find more information at: http://docs.strongloop.com/display/DOC/Working+with+models+and+data+sources The CouchDB can be easily ported from https://github.com/jugglingdb/nano-ada

[nodejs] Re: Make noBackend solution by nodejs like firebase, parse

2013-11-18 Thread Raymond Feng
Hi, bodo. You should check out LoopBack (https://github.com/strongloop/loopback) from StrongLoop . It's an open source mobile backend as a service solution built in Node.js. One of the differentiators for LoopBack is that you own the server, run

[nodejs] Re: oracle connection setup

2013-11-01 Thread Raymond Feng
Hi, Athan. I'll advise you to use http://strongloop.com/community/node-republic-forums/loopback/ for further discussions as this is a user-land module related question :-) When you run 'npm install', the loopback-connector-oracle module will install Oracle instant client, which is the client l

Re: [nodejs] nodejs framework

2013-09-23 Thread Raymond Feng
> thanks, > ravi > > On Sep 22, 2013, at 5:40 AM, Raymond Feng > > > wrote: > > > Check out https://github.com/strongloop/loopback. It was just released > this week as the open mobile api framework. LoopBack is built on top of > express. It not only helps you exp

[nodejs] Re: Best way to execute javascript in c++ addon

2013-09-23 Thread Raymond Feng
I don't think you can call v8 functions from a thread other than the v8 event loop thread. BTW, you should use libuv uv_queue_work() to deal with the threads. Check this out: http://www.slideshare.net/nsm.nikhil/writing-native-bindings-to-nodejs-in-c Thanks, Raymond On Monday, September 23,

[nodejs] nodejs framework

2013-09-21 Thread Raymond Feng
Check out https://github.com/strongloop/loopback. It was just released this week as the open mobile api framework. LoopBack is built on top of express. It not only helps you expose REST api, but provides you the ability to build Apis, define data models, connect to data sources including databas

[nodejs] Re: Fun little HTTP "bug"

2013-06-21 Thread Raymond Feng
I ran into the same issue recently. In my case, the Content-Length is set to 0. Maybe the http server can do some check (if possible) to report a more meaningful error? On Thursday, June 20, 2013 11:20:46 AM UTC-7, Matt Sergeant wrote: > > Just posting this here so other people might find it..