Questions tagged [nodester]

Nodester is an open source Node.JS Platform-as-a-Service.

Nodester is an open source Node.JS Platform-as-a-Service written in Node.JS with a RESTful API designed to run in any cloud without a VPS! It was the first of it's kind and 100% open sourced under the GNU Affero license.

15 questions
15
votes
4 answers

Can I map local branches to remote branches with different prefixes in git?

We're working with a semi-centralized git repository here where I work. Each developer has their own subtree in the central git repository, so it looks something like…
Michael Johnson
  • 2,287
  • 16
  • 21
4
votes
1 answer

How are npm packages managed in nodester?

I don't understand how node packages are managed in nodester. When I run nodester npm install from CLI I don't see any packages in my app's source folder. Without these packages visible in my folder, can I use them in usual way (as if…
Juzer Ali
  • 4,109
  • 3
  • 35
  • 62
3
votes
2 answers

Unable to run Express App on Nodester

I am having trouble deploying express app on nodester. After successfully running the default hello world app of nodester I ran the following commands on nodester CLI nodester npm install express Thereafter I installed the express on the local git…
Juzer Ali
  • 4,109
  • 3
  • 35
  • 62
2
votes
1 answer

using bogart on Nodester

TLDR: Node app works locally, doesn't work on Nodester.com, seems to be a npm issue. Detailed Version: I wrote a node app with bogart and couchdb (basically following http://howtonode.org/bogart-couchdb) and it runs fine locally. I installed the…
arvidkahl
  • 852
  • 8
  • 15
2
votes
1 answer

Getting CouchDB to work with node.js

I'm using nodester with iriscouch. I've installed the couchdb-api package. This is my code: console.log("Running"); //Appears in the logs var dbServer = require("couchdb-api").srv('eric-wieser.iriscouch.com'); console.log(dbServer); //Appears in…
Eric
  • 95,302
  • 53
  • 242
  • 374
1
vote
2 answers

Nodester: "failed-to-start" new app

Using nodester, I'm having issues starting a new app. I've created it but the state is: failed-to-start, and it doesn't let me change anything. Anybody have an familiarity with this?
Miguel Jiménez
  • 1,276
  • 1
  • 16
  • 24
1
vote
0 answers

Can not create nodester account

I want to register on http://nodester.com/. I got my coupon, registered on site, installed nodester (npm install nodester-cli -g) and user setup command (nodester user setup gio.beri@gmail.com pass***) gives me error: nodester info verifying…
Zango
  • 2,387
  • 3
  • 19
  • 33
1
vote
1 answer

How should I handle cron jobs on nodester?

I'd like to watch for certain changes on a couchdb in a NodeJS app, currently hosted on Nodester. Is it OK to just open long polling sockets or use setTimeout() in a Nodester app? Or is there some typical way people handle this on Nodester or…
Dobes Vandermeer
  • 8,463
  • 5
  • 43
  • 46
1
vote
0 answers

Deploy app on nodester

i am going crazy :( I want to setup an app to nodester with windows7. I followed the instructions on http://nodester.com/help At first i set up git, installed git, genereated a ssh-key and set it up to my profile. Everything works how it is written…
chaosbohne
  • 2,454
  • 2
  • 22
  • 27
1
vote
1 answer

nodester node version error

Every time I try to install a module or list the installed modules with nodester npm, I end up with this. nodester Error: npm doesn't work with node v0.8.1 nodester Required: node@0.4 || 0.5 || 0.6 nodester at…
Erin
  • 1,848
  • 15
  • 26
1
vote
1 answer

How to upgrade Node.js on Nodester

I'm trying to upgrade to Node v0.6.17. I followed the instructions in this post: http://blog.nodester.com/ but I'm still running version 0.4.9 Any suggestions? Thanks
jwerre
  • 9,179
  • 9
  • 60
  • 69
1
vote
1 answer

Net Module Nodester not Listening to Port

I have a basic node.js app that is designed to open up a connection between two clients and echo the input of one to the other. var net = require("net"); console.log("Relay Started"); var id = 0; var Socket = []; relay =…
Zwade
  • 1,682
  • 4
  • 17
  • 28
0
votes
1 answer

Lost in Nodester Installation

I am trying to install my own version of Nodester. I have tried on Ubuntu 12.04 LTS and now with CentOS. I am not the most skilled Linux user (~2 months use) so I am at a loss at this point. The instructions are located at…
jslamka
  • 261
  • 2
  • 5
  • 14
0
votes
2 answers

On cloud9, how do you push one config for nodester, another to github

Okay, so wanting to start a little oss project via c9. I'd like to publish one config (private to nodester, containing for example mongolab credentials). I would rather not have this information in the example config that goes to github... how do…
Tracker1
  • 19,103
  • 12
  • 80
  • 106
0
votes
1 answer

Problems with expressjs on Nodester

i just started using nodester as nodejs application paas and i stepped into a couple of problems. Let me clarify that my local machine runs node 0.7 while on nodester i'm using node 0.6.17 The following code is inside my server.js file, executed by…
fat
  • 5,098
  • 4
  • 28
  • 31