Questions tagged [modulus.io]

Modulus provides a hosting platform for Node.js with integrated MongoDB and statistics.

Links:

56 questions
15
votes
4 answers

Meteor 0.9 Modulus deployment doesn't work - "Cannot find module 'fibers'"

When trying to deploy a newly created Meteor (0.9) app I always get this error message in the Modulus logs: module.js:340 throw err; ^ Error: Cannot find module 'fibers' at Function.Module._resolveFilename (module.js:338:15) at…
Matthias Posch
  • 537
  • 6
  • 27
7
votes
4 answers

Deploying Meteor app via Meteor Up or tmux meteor

I'm a bit curious if Meteor Up (or other Meteor app deploying processes like Modulus) do anything fancy compared to copying over your Meteor application, starting a tmux session, and just running meteor to start your application on your server.…
aspin
  • 309
  • 2
  • 12
6
votes
0 answers

Modulus warning: The output directory is under your source tree

When I run modulus deploy with a Meteor app, it prints to the console WARNING: The output directory is under your source tree. What does this warning mean?
Yngve Høiseth
  • 570
  • 6
  • 26
6
votes
1 answer

Server error on my Meteor App?

Hi I am currently using Modulus.io to host my meteor application, but it keep crashing. it is my first time doing hosting, so I can not very good at reading the Log, can someone tell me what is wrong ? at…
Tom chan
  • 365
  • 3
  • 18
5
votes
2 answers

Let's Encrypt certificate on modulus.io

I've deployed a Meteor app on modulus.io and would like to set up SSL with Let's Encrypt. According to Let's Encrypt's documentation, it seems that you need access to the server's command line to install their client. But, as far as I know, there's…
Yngve Høiseth
  • 570
  • 6
  • 26
4
votes
0 answers

PayPal IPN fails on Meteor app with new host Modulus.io

I have a production Meteor app (v0.8.3). It uses the PayPal IPN system, with a server-side route for the IPN (using Iron Router). I was hosting it with Webfaction and the IPN process worked well. Router.map(function () { this.route('ipn', { …
Racing Tadpole
  • 4,270
  • 6
  • 37
  • 56
3
votes
1 answer

What are the steps for deploying a Meteor app to Galaxy?

Production and development apps currently deployed to Modulus need to be deployed to Galaxy, and CNAMES cut over. What is the correct sequence of steps to do this without disturbing existing users? What are the steps relevant to binary NPM packages,…
user2330237
  • 1,629
  • 5
  • 20
  • 39
3
votes
1 answer

Meteor + CodeShip + Modulus

Can anyone recommend a good setup script to deploy to Modulus after passing tests? Right now I'm using: nvm install 0.10.28 nvm use 0.10.28 curl -o meteor_install_script.sh https://install.meteor.com/ chmod +x meteor_install_script.sh sed -i "s/type…
ilrein
  • 3,833
  • 4
  • 31
  • 48
3
votes
0 answers

webrtc not working after bundling the application

I am trying to implement Simplewebrtc in meteor for video chat. These are my files #webrtc.html meteorwebrtc {{> navbar}}
{{> video_chat}}
Rajanand02
  • 1,303
  • 13
  • 19
2
votes
1 answer

How do I update a meteor app deployed on modulus.io without having it restart or stop functioning?

I find that whenever I modulus deploy my app, after it has uploaded to apply the new changes the app throws some connection errors in the console due to it being restarted. Is there a way to update deployed meteor apps without having the entire app…
Ally Jr
  • 1,055
  • 1
  • 14
  • 27
2
votes
0 answers

Meteor: Proper Way to Send a POST Request to Modulus API

I have a meteor application hosted on modulus. Modulus has an api here: https://api.modulus.io/ The API code is hosted here: https://github.com/onmodulus/modulus-cli/blob/master/lib/librarian/librarian.js#L361 I want to save a domain to one of my…
Brian McDonough
  • 13,829
  • 4
  • 19
  • 23
2
votes
1 answer

Access client's IP address (not the load balancer's) from Meteor, with Modulus

I have an https Meteor webapp hosted on modulus.io. Following the advice here I have a server method: Meteor.methods({ printIP: function() { return this.connection.clientAddress; } }); I call this from my browser console on the live…
Racing Tadpole
  • 4,270
  • 6
  • 37
  • 56
2
votes
1 answer

Meteorjs - routes not working when deployed (Modulus.io) but fine on .meteor.com and local

Hi I'm very confused and probably have made a stupid mistake, but for the life of me I can't get my Meteorjs app to work when deployed to Modulus. On the local host and deployed to Meteor (*.meteor.com) it works just fine, however when deployed to…
Louisswiss
  • 33
  • 3
2
votes
0 answers

Deploying NodeJs App Correctly (git, modulus)

Modulus offers the option to deploy from the current directory or from a specified path. My file structure is: package.json bower.json src (where the app is coded) dist (where gulp puts the ready app) dozens of other folder like e2e, seed, gulp,…
Andi Giga
  • 3,744
  • 9
  • 38
  • 68
2
votes
1 answer

Meteor, Modulus and secure websockets

Trying to get my head around websockets and xhr in a Meteor -> Modulus context. I've been noticing lengthy response times on occasion apparently due to websockets falling back to xhr when it can't connect...I'm trying to diagnose why. Production app…
Chad Kruse
  • 623
  • 1
  • 8
  • 22
1
2 3 4