[nodejs] Re: Error when running 'npm install' for a package on a git repo

2015-07-24 Thread Niko Bellic
Ahh right. That makes sense. Thanks! On Friday, July 24, 2015 at 4:14:29 PM UTC-7, mscdex wrote: > > On Friday, July 24, 2015 at 4:17:33 PM UTC-4, Niko Bellic wrote: >> >> That's a good workaround. Thanks, mscdex! Is there anyway to specify >> version? (in the other format you could do git+https:

Re: [nodejs] Nodejs memory leak? consumption high?

2015-07-24 Thread Ryan Graham
It is running with multiple processes because it clusters itself by default: https://git.wikimedia.org/blob/mediawiki%2Fservices%2Fparsoid.git/92f1cd6d87a0b233edcc15b999e9bfab34b23da6/api%2Fserver.js#L38 As for the memory usage, I'm not familiar enough with it to know what would be normal. ~Ryan

[nodejs] HTTP proxy with traffic replay and intercept support

2015-07-24 Thread Tomas Aparicio
This package can be useful for a variety of HTTP scenarios, such as API gateway, proxy balancer with zero downtime, migration proxy, traffic adapter, security proxy and more... Provides a simple but featured express-style API and command line. https://github.com/h2non/rocky Any feedback is highly

[nodejs] template engine allowing multiple views (form editing, report snipet) for same template

2015-07-24 Thread Hirsch
Looking for Node.js and/or client side javascript template engine where I can use one template for different views (editable form, layout for print, layout for screen). For example template (forgive messy meta-markup) like: Alergen|Found|Intensity [loop A] [label a][combo(Yes/No) b][input c] [

[nodejs] Re: Error when running 'npm install' for a package on a git repo

2015-07-24 Thread mscdex
On Friday, July 24, 2015 at 4:17:33 PM UTC-4, Niko Bellic wrote: > > That's a good workaround. Thanks, mscdex! Is there anyway to specify > version? (in the other format you could do git+https:// > github.com/jshint/jshint.git#2.8.0) > > Yes, just change the last part of the URL to whatever branch

[nodejs] Re: npm install grunt fine, npm install --dev with grunt as devDependency results in warnings, errors

2015-07-24 Thread Victor Roman
Hi Aria, Thank you for clarifying that for me. At some point, I was running just "npm install" and it appeared that it was not installing the devDependencies. That's when I went stalking the internet and came across this post: http://stackoverflow.com/questions/17374278/npm-install-not-pull

[nodejs] Nodejs memory leak? consumption high?

2015-07-24 Thread AmazingTrans
I have nodejs running on my mediawiki using the following steps : https://www.mediawiki.org/wiki/Parsoid/Developer_Setup#Starting_the_Parsoid_service_automatically I wonder why does nodejs runs 4 times ? and also, is it normal to consume to much memory? about 1gb or more. Here is an image of my t

[nodejs] Re: Error when running 'npm install' for a package on a git repo

2015-07-24 Thread Niko Bellic
That's a good workaround. Thanks, mscdex! Is there anyway to specify version? (in the other format you could do git+https:// github.com/jshint/jshint.git#2.8.0) On Friday, July 24, 2015 at 5:37:22 AM UTC-7, mscdex wrote: > > On Thursday, July 23, 2015 at 9:32:53 PM UTC-4, Niko Bellic wrote: >> >>

[nodejs] Re: It is not possible to log in on a server environment

2015-07-24 Thread Isen Ng
On the Parse JS changelog: https://parse.com/docs/downloads Removed the concept of the concept of the current user when running in node.js Current users can be enabled in node with Parse.User.enableUnsafeCurrentUser() Many requests now support passing an explicit session token as an option Unf

[nodejs] Re: npm install grunt fine, npm install --dev with grunt as devDependency results in warnings, errors

2015-07-24 Thread Aria Stewart
On Thursday, July 23, 2015 at 3:13:49 PM UTC-4, Victor Roman wrote: > > When I run "npm install grunt", grunt installs into the local dir fine and > within seconds. > > If I have a package.json with grunt as a devDependency and run "npm > install --dev" I see many warnings at first about other

[nodejs] Re: Error when running 'npm install' for a package on a git repo

2015-07-24 Thread mscdex
On Thursday, July 23, 2015 at 9:32:53 PM UTC-4, Niko Bellic wrote: > > > I get the following *command-line error*... > > As a workaround (for now), you could also use: npm install https://github.com/jshint/jshint/tarball/master I use that method all the time for modules on github -- Job board:

[nodejs] Re: It is not possible to log in on a server environment

2015-07-24 Thread Jeremy May
Somewhere between v1.4.1 and v1.5.0 on the parse npm, they made it so this error message is thrown. I just ran into this and was surprised because I'm running another server that logs in and has elevated credentials. I've also used node CLI as a way to add people to roles. I suddenly couldn't lo

[nodejs] Newbie asking design questions for a project

2015-07-24 Thread Hanumant Singh
Hi I am new to node js. I am currently trying to work on a project where a node js server can provide n different functionalities. I envision each of these functionalities as a separate module,for eg music control, task list manager etc. A command will be received by the server. This command cou