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
0
votes
1 answer

Cannot find module on start of new Nodejitsu deployment

I have a node application that runs locally and when deploying to Nodejitsu via jitsu deploy, the CLI reports a successful deployment. However, when actually logging in to look at the application via the web based interface and attempting to…
dooburt
  • 3,010
  • 10
  • 41
  • 59
0
votes
1 answer

Yeoman Full-Stack Generator and Nodejitsu deployment

I used Daftmonk's Yeoman Full-stack generator as scaffolding for an app I'm making. I'd like to run it using Nodejitsu's nodejs service. But when I deploy, I get a cascading series of errors, and even once the errors stop in jitsu's cli, the app…
Alex
  • 1,583
  • 13
  • 23
0
votes
1 answer

NodeJitsu PHP Curl Json API - Restart an application

I have problem with use NodeJitsu API in PHP curl... I want make php file which will be restart my application. Here is NodeJistu API: https://www.nodejitsu.com/documentation/api/#restart-an-application But i don't realy now how i can use it in php.…
Xawier
  • 165
  • 1
  • 11
0
votes
1 answer

Host and Deliver Big Files on Nodejs Nodejitsu

I have a website hosted on Nodejitsu using Nodejs. I want people to be able to download files. Overall, there are about 1k files of 1MB each for a total of 1GB. Those files are in the same directory than regular code. When I try to deploy, there's…
RainingChain
  • 7,397
  • 10
  • 36
  • 68
0
votes
1 answer

Run NodeJS app on nodejitsu, all i get is "cannot get /"

as part of my learning i wanted to deploy my app to nodejitsu. Its running fine on my local server, but on nodejitsu all i get is Cannot GET / I thought it may have something to do with the NODE_ENV set to production on the server, but i never…
Toddy
  • 333
  • 1
  • 15
0
votes
1 answer

keep separate the local database for local dev and nodejutsu database URL for nodejitsu app?

When I'm developing on my local box I use mongodb://localhost/Data as my connection string when connecting to mongoDB that's running locally. But then when I upload/update my local app to nodejitsu I have to change the url to the one provided by…
laggingreflex
  • 32,948
  • 35
  • 141
  • 196
0
votes
1 answer

Nodejitsu deploy ignored files but still ignore them locally

I generally understand how the jitsu deploy command works and thats fine. Works. But I have generated files via various processes such as sass 'concat' 'uglify' etc that I don't want to check into the project because I feel like they should be…
Mike Fielden
  • 10,055
  • 14
  • 59
  • 99
0
votes
2 answers

MongoDB CLI authentication failed on mongoHQ hosted on Nodejitsu

I have an app on Nodejitsu with a MongoHQ database that is working. Now I wish to see and manage my DB from my terminal. Here is the code I write: mongo troup.mongohq.com:10014/database -u -p The problem is I don't know whats…
orepor
  • 905
  • 2
  • 13
  • 23
0
votes
2 answers

Launching boilerplate MEAN.io app to Nodejitsu: error

Here is my gist: https://gist.github.com/AustinG08/9065353 Similar error message: https://github.com/nodejitsu/jitsu/issues/493 I clone the mean.io boilerplate. I don't see anything wrong with the package.json file. I have tried implementing what…
austingray
  • 8,727
  • 1
  • 12
  • 18
0
votes
1 answer

Failed to load resource socket.io in nodejitsu?

I'm trying to deploy a simple chat applicacion in Nodejitsu, and using socket.io. I use the application localy and it works perfectly but when I deploy to nodejitsu I get the following error in the javascript console: Failed to load resource And…
Cris_Towi
  • 615
  • 1
  • 13
  • 25
0
votes
0 answers

couchdb tracking changes timeout

I'm writing a small node server, hosted in nodejitsu, that fetchs changes continuously from a cloudant db that's being modified all the time. I'm using the follow module, that provides an interesting couchdb changes fetcher. The problem I'm having…
Bruno
  • 115
  • 2
  • 10
0
votes
1 answer

plunker node js jitsu error when start application

I getting errors during start jitsu server. Please guide me {"message":"Object # has no method 'local'","code":500} err Mon, 11 Nov 2013 13:13:09 GMT TypeError: Object # has no method 'local' at Object.module.exports.middleware [as…
0
votes
1 answer

Mistake on Nodejitsu | Need to connect to API

By accident, I entered the command $ jitsu host jit.su . Now, I can't even login with commandline. The following message appears: The Nodejitsu-API requires you to connect the Nodejitsu's stack (api.nodejitsu.com) What does that mean and how can I…
RainingChain
  • 7,397
  • 10
  • 36
  • 68
0
votes
1 answer

Affinity between Nodejitsu and IAAS

I'm evaluating Nodejitsu for hosting Node.JS. I'm trying to understand the relationship between Nodejitsu and IAAS providers. In particular is Nodejitsu providing me the machines or can I choose that my machine will be on some specific cloud…
Yaron Naveh
  • 23,560
  • 32
  • 103
  • 158
0
votes
1 answer

Continuous Integration workflow using Github, Travis CI, and Nodejitsu

I am trying to create the following workflow for continuous integration on my project Developer commits code change to Github Github sends entire codebase to Travis CI Travis CI does the following Runs tests Builds distribution worthy package,…