-3
votes
0answers
183 views

Strategies for Deploying NodeJS into Production? [closed]

I have a NodeJS application and I am looking best strategies for deploying NodeJS application into Production. The questions I have are as follows :- Should NodeJS server be run in Clusters? Should ...
0
votes
2answers
90 views

globally installed npm-packages not working [closed]

local npm-packages work as predicted, but it seems impossible for me to get globally-installed packages running. It doesn't even throw any error, it's just not doing anything ( express, coffee, etc.. ...
1
vote
1answer
188 views

CoffeeScript not working “-bash: coffee: command not found”

I installed node, npm and coffee script and when I try to run the coffee command I get "-bash: coffee: command not found" http://cl.ly/image/1Z2t1U1O1I0z I'm not sure if the $PATH is whats wrong, ...
0
votes
1answer
149 views

esprima error while trying to use the Browserify module

Alright so I've looked around and cant find anything about this error online. I'm trying to run Browserify with: browserify application/main.coffee -w -o public/client_bundle.js It is producing ...
1
vote
0answers
52 views

Exporting a node.js module for another framework [closed]

I was working on a Rails app when I realized a lot of client-side javascript I had written was fairly reusable; I wanted to clean it up and release it as its own module, and figured it was a good time ...
1
vote
2answers
824 views

Difficulty installing Node.js and CoffeeScript in Mac OSX

I'm having some difficulty installing Node and Coffeescript. I have installed node using homebrew and then I have successfully installed NPM. I have tried to install Coffeescript from NPM and it ...
1
vote
2answers
191 views

development/build tool for client side web application

I am working on a pretty large node web application and realize that my workflow is suboptimal. The server side code is quite well organized into node modules. However most of the heavy lifting in the ...
10
votes
3answers
601 views

Can I write npm package in coffeescript?

I have used coffeescript for a while. Now I need to write a npm package, can I write it in coffeescript, or I should compile coffeescript into javascript?
0
votes
2answers
358 views

installing coffee-script on ubuntu installs all the files correctly but command line doesn't work

All, I have recently switched my dev environment from windows7 to Ubuntu12 and everything has been running smoothly except coffee-script. I have executed this exact sequence of commands: sudo ...
2
votes
0answers
115 views

`npm install <folder>` or `npm pack` does not install dependencies

I have an npm package that uses coffeescript source, which I want to precompile before pack or publish. However, my prepublish script depends on coffee-script as a devDependency, but npm isn't ...
1
vote
1answer
78 views

How to force brunch 0.8.1 to use coffescript 1.2

Spent quite a number of hours trying to find this thing out but to no avail. I'm sure it's as simple as syntax but maybe I've been staring at the problem for too long. I'm trying to build out a ...
29
votes
11answers
2k views

How to manage client-side JavaScript dependencies?

Although there are great solutions to manage dependencies on the server side, I could not find any that satisfies all my needs to have a coherent client side javascript dependency management workflow. ...
0
votes
1answer
163 views

“coffee” is not recognized as an internal or external command - when using js2coffee and node.js

I have installed js2coffee with command npm install js2coffee -g npm http GET https://registry.npmjs.org/js2coffee npm http 304 https://registry.npmjs.org/js2coffee npm http GET ...
1
vote
1answer
60 views

npm package branding

I have written a library in CoffeeScript. It is made to tie Backbone views with Backbone collections and models through Knockout view-models. It helps to easily develope admin web-interfaces, and ...
0
votes
3answers
2k views

Trouble installing npm

I got a clean install on my mac book pro with mountain lion. Then have installed nodejs with homebrew i.e. brew install nodejs, but now I cant get npm to install. eg. $ node -v v0.8.6 $ ...
0
votes
2answers
104 views

Compiling coffeescript test with the npm module

Is it possible to compile a string of coffeescript with the npm module, I have been looking everywhere and cannot seem to find any good answers.
1
vote
1answer
434 views

Connect Error when installing CoffeeScript via NPM

Trying to install CoffeeScript on Windows XP (SP3) machine on a PC behind a websense proxy, using npm (ver 1.1.24) on Node.js (ver 0.6.19). I used the following command to install npm install -g ...
1
vote
3answers
1k views

Convert a CoffeeScript project to JavaScript (without minification)?

We're using a particular jQuery plugin written in CoffeeScript @ work and I'm desperately hoping I can convert the project into somewhat normal looking JS. The library looks like it's structured ...
1
vote
1answer
277 views

How to build .coffee into .js without wrapper function

I'm using 'coffee-script` npm package: var coffee = require('coffee-script'); var source = coffee.compile('target.js'); and I have compiled js inside of source variable. But it also wrapped into ...
7
votes
3answers
4k views

How to use package installed locally in node_modules?

How do I use a local version of a module in node.js. For example, in my app, I installed coffee-script: npm install coffee-script This installs it in *./node_modules* and the coffee command is in ...
0
votes
2answers
1k views

CoffeeScript Installing with NPM and Node [duplicate]

Possible Duplicate: error installing coffeescript on mac 10.7.2 At the moment, I am trying to install CoffeeScript on my computer. I have node.js version 0.6.7 and npm 1.1.0-beta-10. When i ...
1
vote
2answers
203 views

Install NPM (Node Package Manager) with pip?

I'm on Heroku and I would like to get NPM installed for a Django application. Is it possible to get npm installed using pip with the requirements.txt file?
9
votes
5answers
770 views

Creating an app on Heroku with Django and NPM

I'm writing a Django app that includes some CoffeeScript in it. To allow for this I'm using django-compressor which compiles the CoffeeScript to JS before the app is launched. django-compressor ...
3
votes
2answers
3k views

error installing coffeescript on mac 10.7.2

Node and npm are both installed and up to date but keep getting this error when trying to install coffeescript. I am still new to programming so any advice would be greatly appreciated. ...
1
vote
1answer
362 views

Issue attempting to run Brunch localhost with

I have installed Brunch into my working directory as well as Coffee Script. Installation went over fine. When I try to run the local server with: gorteks$ brunch watch --server I get: [Brunch]: ...
6
votes
2answers
2k views

Compiling coffeescript on npm install

I'm building an app consisting of private npm repos built in CoffeeScript. To keep deployment language-agnostic, and allow each app to specify its version of CoffeeScript, I'm including CoffeeScript ...
1
vote
1answer
206 views

Using coffee-script with rails3.1 ubuntu 11.04

I have rails 3.1 installed, and I try to use coffee script. I get this: node.js:63 throw e; ^ Error: print() has moved. Use require('sys') to bring it back. at node.js:12:11 I use ...
1
vote
4answers
811 views

Can't install coffeescript on ubuntu LTS

I'm trying to install coffee script on ubuntu 10.04. It hangs forever. This is the output of npm install coffee-script --verbose: npm info it worked if it ends with ok npm verb cli [ 'node', npm ...
0
votes
3answers
729 views

Using require('jquery') with jsdom?

I can use JSDOM's 'scripts' option to load jquery for scraping. However I was wondering if it was possible, and also better or worse, to use node's own require mechanism now npm includes jquery. ...
0
votes
0answers
631 views

Mysql2::Error: Can't read dir of './ppml_development/' (errno: 13): SHOW TABLES

I get this error: Mysql2::Error: Can't read dir of './site_development/' (errno: 13): SHOW TABLES whenever I try to query the db of any of my rails apps that use mysql. The same error shows up ...