Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Yahoo! Mojito with Nodester
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Gaurav Vaish  
View profile  
 More options May 30 2012, 1:13 am
From: Gaurav Vaish <gaurav.va...@gmail.com>
Date: Tue, 29 May 2012 22:13:12 -0700 (PDT)
Local: Wed, May 30 2012 1:13 am
Subject: Yahoo! Mojito with Nodester
Hi,

Is it possible to use Yahoo! Mojito on Nodester?

While doing a "nodester npm install {app} mojito", I get the
following:

nodester info installing to app: {appname}
nodester info installing these npm packages: mojito
nodester ERROR Fatal Error! API Response: undefined
Reason: No response received.

--
Happy Hacking,
Gaurav Vaish
www.m10v.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Teruhisa Haruguchi  
View profile  
 More options May 30 2012, 2:05 am
From: Teruhisa Haruguchi <teruhisa.harugu...@gmail.com>
Date: Tue, 29 May 2012 23:05:20 -0700 (PDT)
Local: Wed, May 30 2012 2:05 am
Subject: Re: Yahoo! Mojito with Nodester
Which version of nodester do you have installed?
I think I was getting that error too until I updated to the latest
(0.2.50)

Although I did get mojito installed, now I'm stuck figuring out how to
run "mojito start" instead of running "server.js" directly...

-Terry

On May 29, 10:13 pm, Gaurav Vaish <gaurav.va...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gaurav Vaish  
View profile  
 More options May 30 2012, 7:40 am
From: Gaurav Vaish <gaurav.va...@gmail.com>
Date: Wed, 30 May 2012 04:40:30 -0700 (PDT)
Local: Wed, May 30 2012 7:40 am
Subject: Re: Yahoo! Mojito with Nodester
It is 0.2.50!

--
Happy Hacking,
Gaurav Vaish
www.m10v.com

On May 30, 11:05 am, Teruhisa Haruguchi <teruhisa.harugu...@gmail.com>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gaurav Vaish  
View profile  
 More options May 30 2012, 10:32 pm
From: Gaurav Vaish <gaurav.va...@gmail.com>
Date: Wed, 30 May 2012 19:32:18 -0700 (PDT)
Local: Wed, May 30 2012 10:32 pm
Subject: Re: Yahoo! Mojito with Nodester
Well, finally got to customizing the command - instead of launching
server.js, launch node_modules/.bin/mojito.
Changed the default command to "start" rather than "help".

Now what I get is an error:
Error: ENOENT, No such file or directory '/dev/MAKEDEV'

Wondering why...

--
Happy Hacking,
Gaurav Vaish
www.m10v.com

On May 30, 4:40 pm, Gaurav Vaish <gaurav.va...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Teruhisa Haruguchi  
View profile  
 More options Jun 3 2012, 10:03 pm
From: Teruhisa Haruguchi <teruhisa.harugu...@gmail.com>
Date: Sun, 3 Jun 2012 19:03:52 -0700 (PDT)
Local: Sun, Jun 3 2012 10:03 pm
Subject: Re: Yahoo! Mojito with Nodester
I've gotten to setup mojito to run

I replaced the content of ./server.js with the following (whichever
nodester app is configured to run)

/////////////////////////////////////
process.chdir(__dirname);

var mojito = module.exports = require('mojito').createServer();

mojito.listen(<port_number>, function(err) {
    if (err) {
        utils.error('There was an error starting the application:\n');
        utils.error(err);
        console.log('\n');
        utils.error('Mojito was not started!\n', null, true);
        return;
    }
    console.log('Mojito started\n');

});

//////////////////////////////////

Looks like you've imported the mojito packaged directly under
node_modules, but I think it'll work with your setup as well.

-Terry

On May 30, 7:32 pm, Gaurav Vaish <gaurav.va...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gaurav Vaish  
View profile  
 More options Jun 5 2012, 11:43 am
From: Gaurav Vaish <gaurav.va...@gmail.com>
Date: Tue, 5 Jun 2012 08:43:52 -0700 (PDT)
Local: Tues, Jun 5 2012 11:43 am
Subject: Re: Yahoo! Mojito with Nodester
Great!

Let me try out sometime this week...

--
Happy Hacking,
Gaurav Vaish
www.m10v.com

On Jun 4, 7:03 am, Teruhisa Haruguchi <teruhisa.harugu...@gmail.com>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gaurav Vaish  
View profile  
 More options Jun 8 2012, 2:07 am
From: Gaurav Vaish <gaurav.va...@gmail.com>
Date: Thu, 7 Jun 2012 23:07:20 -0700 (PDT)
Local: Fri, Jun 8 2012 2:07 am
Subject: Re: Yahoo! Mojito with Nodester
Hey Terry... thanks for the patch.

Have got Mojito working on nodester.

Try: http://gvtestapp.nodester.com/@HelloMojit/index

--
Happy Hacking,
Gaurav Vaish
www.m10v.com

On Jun 5, 8:43 pm, Gaurav Vaish <gaurav.va...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »