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.
> 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.
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'
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:
> 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'
> 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:
> > 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'
> > 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:
> > > 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'
> > > > On May 30, 11:05 am, Teruhisa Haruguchi <teruhisa.harugu...@gmail.com>
> > > > wrote:
> > > > > 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 getmojitoinstalled, now I'm stuck figuring out how to
> > > > > run "mojitostart" instead of running "server.js" directly...
> > > > > -Terry
> > > > > On May 29, 10:13 pm, Gaurav Vaish <gaurav.va...@gmail.com> wrote:
> > > > > > Hi,
> > > > > > Is it possible to use Yahoo!Mojitoon 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.