Questions tagged [nodejitsu]

Nodejitsu is a node.js cloud hosting platform that features Continuous Deployments and native Websocket support.

Nodejitsu is a cloud hosting platform. It features, among other things:

112 questions
2
votes
2 answers

Does nodejitsu support makefile functionality?

For example, if your package.json file contains: "scripts": { "start": "make start", "test": "make test", } ^ Will nodejitsu be able to parse and implement "make start"?
kevmo
  • 677
  • 1
  • 8
  • 20
2
votes
1 answer

What is nodejitsu hosting details for nodejs

"A drone is an individual unit of computing power." i cant understand what that means.... how much space? incoming traffic per month? outgoing? ram? Cpu? internet speed? I have searched their plans. They say you get 1drone for 10 dollars a…
Muhammad Umer
  • 2,228
  • 2
  • 18
  • 17
2
votes
2 answers

Nodejitsu and bower install

Did anybody try to deploy application that uses https://github.com/bower/bower to Nodejitsu hosting? The problem is npm pack command which is used by nodejitsu to deploy app. It ignores all files that are starting with dot, and especially .bowerrc…
Kosmetika
  • 20,774
  • 37
  • 108
  • 172
2
votes
1 answer

multiple custom sub domains on Nodejitsu?

I have 2 apps hosted on Nodejitsu 1st app ('main' site)..package.json:- "subdomain": "myapp", "domains": [ "myapp.com", "www.myapp.com" ], this serves successfully out of www.myapp.com and myapp.com 2nd app..package.json:- "subdomain":…
Michael Dausmann
  • 4,202
  • 3
  • 35
  • 48
2
votes
1 answer

Does Nodejitsu support neo4j?

I want to use Nodejitsu to host my Node.js app. The app also uses Neo4j. Does Nodejitsu provide any kind of support for that? Or do I need to host Neo4j separately (and pay for all network traffic)?
Yaron Naveh
  • 23,560
  • 32
  • 103
  • 158
2
votes
2 answers

JITSU FAILED TO INSTALL OSX [node 0.8.17 and NPM 1.2.0] WTF

im having problems installing jitsu through NPM i have node 0.8.17 and NPM 1.2.0 installed on my mac osx 10.6.8 when i run $ sudo npm install jitsu -g First it warns about no readme file found npm WARN package.json ladder@0.0.0 No README.md file…
Ivan Bravo Carlos
  • 1,650
  • 3
  • 15
  • 22
2
votes
1 answer

Socket.io connection only establishes on server reset (nodejitsu) works fine locally?

So basically I'm making a simple RTS board game with node.js/express/socket.io for a learning experience. So far it's going really well and I though I was almost there working purely on the localhost. Deployed it to nodejitsu and loaded the page up,…
tomatosource
  • 256
  • 2
  • 12
2
votes
1 answer

Procedural 2d-array mongoDB insert on node.js runs out of memory

I am trying to insert a 2000 x 2000 2d array into my mongoDB instance via my node.js server. Right now the way i'm doing it is: for (i=0; i<2000; i++){ //i = height of the tile map for(x=0; x<2000; x++){ //x…
Mavorus
  • 119
  • 1
  • 2
  • 13
2
votes
1 answer

Nodejitsu: is there a way to password protect the apps?

using Nodejitsu: is there a way to password protect the apps? i'm not sure if i can deploy an .htaccess or so... i just need to protect the site from accidental visitors thanks
Francesco
  • 24,839
  • 29
  • 105
  • 152
2
votes
2 answers

Keeping API keys and access details for the database secure

What is best practice for keeping API keys and access details for the database secure? We will be deploying with Nodejitsus jitsu deploy so my thought is to have a config file that will not be part of git. Our current config file which I will have…
webjay
  • 5,358
  • 9
  • 45
  • 62
1
vote
3 answers

flatiron.js / union - where to put app.use() configuration?

Taking the simple example from Union, I am wondering where I can put configuration code that usually goes in app.configure, like passport.js: app.configure(function() { // Initialize Passport! Also use passport.session() middleware, to support …
Patrick
  • 7,903
  • 11
  • 52
  • 87
1
vote
2 answers

Do bundled dependencies pull in their own dependencies from their package.json?

I'm deploying my app on Nodejitsu and I have a custom module that I have npm linked. I've added this module to my bundled dependencies but the deployment throws issues that it can't find the modules that the bundled dependency is dependent on. These…
fancy
  • 48,619
  • 62
  • 153
  • 231
1
vote
1 answer

Jitsu has no method 'help' / Nodejitsu not ok?

I installed jitsu with the following command: sudo npm jitsu -g It seems to have installed correctly but get the following error when running the command jitsu: */usr/local/lib/node_modules/jitsu/lib/jitsu/commands/help.js:101 …
MeanYB
  • 11
  • 1
1
vote
0 answers

Socket.io - Polling fails with 400 (Bad Request)

I'm running a single Socket.io server ( 2.0.3 ) . In the client side i'm trying to allow only polling mode. io.connect(url, { "transports": ['polling'] }) The problem is that polling fails and throws: "code":1,"message":"Session ID unknown" …
anna p.
  • 23
  • 8
1
vote
1 answer

How does nodejistu private npm decide if a module should be private?

Does every module I publish to https://.registry.nodejitsu.com/ become private? I assumed the private package.json flag would play into it, but I just published a module intended for NPM to nodejitsu, configured as my default registry as…
hurrymaplelad
  • 26,645
  • 10
  • 56
  • 76