Re: [nodejs] How to communicate 2 node server with high performance.

2017-02-07 Thread Muhammad Wasim
Take a look at Redis. You can use it as server memory. Multiple servers can use the same memory. The best thing is you can use socket broadcast between servers for communication. Muhammad Wasim On Mon, Feb 6, 2017 at 5:37 PM, Arun Kumar Raga < arunku...@velankanigroup.com> wrote: &g

Re: [nodejs] Como trabaja el servidor de NodeJs

2017-01-26 Thread Muhammad Wasim
oglegroups.com?utm_medium=email_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Regards, Muhammad Wasim | Lead Software Engineer | Zigron Inc. E-mail: muhammad.wa...@zigron.com Website: www.zigron.com -- Job board: http://jobs.nodejs.org/ New gr

Re: [nodejs] Re: Override issue when display mysql data in Nodejs

2017-01-25 Thread Muhammad Wasim
handlebars. * {{grade7}} 7th GRADE Applications {{grade8}} 8th GRADE Applications Muhammad Wasim. On 25 Jan 2017 12:26 a.m., "Fatih Karatay" <kara...@dsatulsa.org> wrote: *Here is the router js file that I use :* *//connection variables*

Re: [nodejs] npm ERR! fetch failed

2017-02-14 Thread Muhammad Wasim
Try this and then install npm. npm config set registry "http://registry.npmjs.org; npm config set strict-ssl false On 15 Feb 2017 6:38 a.m., "Rafael Couto" wrote: > Hi. > > I need install npm to make an internal application works. I read something > before, but I still

Re: [nodejs] HTML not executing on page for node.js

2016-11-07 Thread Muhammad Wasim
Hi Wally, You are setting content type text instead of html. Try using response.writeHeader(200, {"Content-Type": "text/html"}); Thanks, Muhammad Wasim On Tue, Nov 8, 2016 at 12:48 AM, Wally Walrus <wally96...@gmail.com> wrote: > > > Hi; > > I'm a no

Re: [nodejs] Advice please .... risks with "no standard" manipulation of packages in node_modules

2016-12-01 Thread Muhammad Wasim
, Muhammad Wasim On Wed, Nov 30, 2016 at 5:48 AM, Tom Fennelly <tom.fenne...@gmail.com> wrote: > Hi. > > I'm just wondering what might be the risks associated with manipulating > the contents of the node_modules folder outside the normal "npm install" > etc commands. IOW ...

Re: [nodejs] source out rest-functions from app.js into other js.files

2016-12-16 Thread Muhammad Wasim
); }); }); // Add Genre ... regards, Muhammad Wasim On Sun, Dec 11, 2016 at 6:05 PM, dukehh <duke.germ...@gmail.com> wrote: > hi, > ii am new with nodejs.i habe worked on an utube-example from Brad > Traversy, bookstore. I would like to source the rest.functions out from > a

[nodejs] gulp watch race condition, it keeps on changing my file

2017-05-26 Thread Muhammad Wasim
Hi, I am trying to write a gulp build process but i am stuck in race condition due to watch. I don't know how to overcome this problem. I am trying to watch html/js/ts changes, and using linker to insert script tags after compiling my code. When linker modifies html file, watch re-runs the whole

Re: [nodejs] Re: node-soap example

2018-01-21 Thread Muhammad Wasim
You have to check for 'err' object. It must have the reason of undefined client. On 21 Jan 2018 9:49 p.m., "farzana mustafa" wrote: > > Hi, >> > > I am new to node.js and am learning how to consume soap based asmx > webservice in node.js. > > The above mentioned example is