CommonJS is a project whose goal is to move JavaScript outside the browser, such as on servers and desktops, in applications. The project is not affiliated with the ECMA International group working on the ECMAScript standard. CommonJS provides APIs to access functionality not seen in browsers, such ...
18
votes
4answers
2k views
Client-side javascript to support promises, futures, etc
I'm really interested in implementing Promises and related features in client-side Javascript. From what I've seen, the focus in implementing these technologies in Javascript seems to be on ...
11
votes
5answers
4k views
EventMachine vs Node.js
I'm going to develop a collaborative site, and one of the features will be collaborative editing with realtime changes. i.e. when two or more users are editing the same doc, they can see each other ...
10
votes
1answer
2k views
node.js - eval'ing to a live process
Did anyone set up something like this for himself using the existing
node.js REPL? I didn't think of a quick way to do it.
The way I do it today is using emacs and this:
...
10
votes
6answers
1k views
Will existing JavaScript frameworks incorporate CommonJS?
JavaScript frameworks like Prototype, jQuery, YUI, MooTools, Dojo, et al. all seem to target client-side developers, with the focus on enabling common user interaction patterns to be implemented more ...
8
votes
1answer
698 views
Why is CommonJS only said to be suitable for non-browser apps?
Why not use it as a general component pattern for Javascript, including browser-executed Javascript?
At a glance, it seems to be a good way to modularize the project I'm currently working on, which ...
7
votes
4answers
854 views
Load “Vanilla” Javascript Libraries into Node.js
There are some third party Javascript libraries that have some functionality I would like to use in a Node.js server. (Specifically I want to use a QuadTree javascript library that I found.) But these ...
7
votes
6answers
1k views
How to check whether a script is running under node.js?
I have a script I am requiring from a node.js script, which I want to keep javascript engine independent.
So, for example, I want to do:
exports.x = y;
only if it's running under node.js. how can ...
7
votes
2answers
948 views
What is the benefit of a 'promise' abstraction in CommonJS?
I'm reading this article and the section on the promise abstraction seems a little overly complicated to me. The following is given as an example:
requestSomeData("http://example.com/foo") // ...
6
votes
1answer
515 views
Architecture query.. Building a service/message bus with Node.js
So the situation is that I have a variety of datasources that are providing a stream of messages from external devices.. some are sending messages on a serial port, some via UDP, some via Telnet.. I ...
5
votes
0answers
141 views
Browserify vs Stitch? [closed]
For people who have experience with them, what are the main differences between Browserify and Stitch??
https://github.com/substack/node-browserify
https://github.com/sstephenson/stitch
5
votes
3answers
190 views
Defining an implementation independent version of the global object in JavaScript
I'm trying to define the global object in JavaScript in a single line as follows:
var global = this.global || this;
The above statement is in the global scope. Hence in browsers the this pointer is ...
5
votes
3answers
526 views
module.exports vs exports in nodeJS
I've found the following contract in a node module:
module.exports = exports = nano = function database_module(cfg) {...}
I wonder whats the different between module.export and export and why both ...
5
votes
4answers
391 views
Reason behind this self invoking anonymous function variant
While looking at code on github, I found the following:
(function() {
}).call(this);
This is clearly a self invoking anonymous function. But why is it written this way? I'm used to seeing the ...
5
votes
1answer
956 views
RequireJS: How to define modules that contain a single “class”?
I have a number of JavaScript "classes" each implemented in its own JavaScript file. For development those files are loaded individually, and for production they are concatenated, but in both cases I ...
5
votes
5answers
1k views
Is it possible to use the CommonJS libraries yet?
I am interested in getting started with CommonJS.
With JavaScript frameworks getting faster all the time, and parsing engines and compilers making JavaScript incredibly quick, it is surprising that a ...
4
votes
2answers
134 views
Uncaught module jqueryify not found
My situation
I'm checking out spine.js for a web application I'm thinking of writing. I've read all the documentation and gone through all the examples. Now I'm trying to run the spine.contacts ...
4
votes
2answers
273 views
NodeJS modules vs classes
To me classes are quite similar to NodeJS (CommonJS) modules. You can have many of them, they can be reused, they can use each other and they are generally one-per-file.
What makes modules so ...
4
votes
4answers
170 views
What are the alternatives for testing commonjs modules?
Which javascript testing frameworks out there provide support for testing commonjs modules?
3
votes
1answer
112 views
Similar pattern to promises/deferred's that support multiple results and cancellation
Similar to the promises pattern I'm looking for an event pattern that avoids needing to pollute objects with addEventListener/etc methods, I want to be able to return an object, that can be cancelled ...
3
votes
3answers
242 views
How to require CommonJS modules in the browser?
What is the best way to load CommonJS modules as client-side javascript in the browser?
CommonJS modules put their functionality in the module.exports namespace and are usually included using ...
3
votes
2answers
231 views
Do any IDEs/IDE plugins have support for JavaScript CommonJS modules?
It'd be really cool to get some code completion support here. That is, when I type
var math = require("math");
I'd love to get more than just the usual Object properties when I type "math.".
...
3
votes
1answer
499 views
How to handle circular dependencies with RequiesJS/AMD?
In my system, I have a number of "classes" loaded in the browser each a separate files during development, and concatenated together for production. As they are loaded, they initialize a property on a ...
3
votes
1answer
713 views
Best IDE for javascript server development
After reading
http://www.pragprog.com/magazines/2010-03/javascript-its-not-just-for-browsers-any-more
im wondering which is the best IDE to develop server-side javascript applications?
I want a nice ...
2
votes
2answers
105 views
Use of CommonJS promises: rejection vs. exceptions
I have a function, downloadAsync(), that returns a CommonJS promise (using Q). It can fail in two ways:
The file can already be downloaded, in which case we know immediately.
The download process ...
2
votes
1answer
591 views
CommonJS for OOP in Appcelerator Titanium
Is it good practice to write all javascript "classes" as CommonJS modules within an Appcelerator Titanium Mobile app instead of using functions / object notation to create a new "class" (or how you ...
2
votes
2answers
120 views
custom `require` method in CommonJS (specifically Node)
Is it possible to define a custom require method in one module that can be called in another module?
For example, in x/x.js
exports.xrequire = function(path) {
console.log("requiring " + path);
...
2
votes
1answer
162 views
Node.js - are modules initialised only once?
I am using node-mysql driver for a node.js app. Instead of having to set-up the mysql connection over and over again for each of my model-like modules, I do this:
// DB.js
var Client = ...
2
votes
2answers
4k views
nodeJS require.paths resolve problem
I am trying to require a file relatively and mysteriously the following is happening
This works well which points to /Users/marcos/Desktop/Taper/lib/utils.js
myPath = ...
2
votes
2answers
131 views
Determining Paths for Loaded Modules in Node.js
In Node.js, is there any way to determine where on the filesystem a module was loaded from?
I do NOT mean, what directory context Node.js is executing in--which you can determine with process.cwd(). ...
2
votes
2answers
435 views
Getting started with Yabble--browser-side CommonJS module loading
Is anyone familiar with Yabble or other browser-side CommonJS loaders?
I'm experimenting with Node.js and would very much like to create Javascript modules which can be used interchangeably on the ...
2
votes
1answer
1k views
Get module.exports from within the same file
In a file I have this code:
module.exports.greet = function() {...}
I want to use that function from within the same file.
I thought this would work:
this.greet()
But it didn't.
What is the ...
2
votes
2answers
540 views
Where are the CommonJS modules?
From time to time I hear that CommonJS http://www.commonjs.org/ is an effort to create a set of modular javascript components but frankly I have never understood anything of it.
Where are the these ...
2
votes
1answer
598 views
Allocating a char buffer with JNA, Rhino, JavaScript
In Narwhal, we are using JNA to make libc calls like getcwd and chdir. I've only been able to use this with my limited knowledge of the JNA interface as it pertains to JavaScript in Rhino, dealing ...
1
vote
1answer
53 views
RingoJS javascript - get user input on console
When using Rhino or RingoJS, one can use print on the console REPL to print output (alert is not available).
What can be used to read user input on the console, instead of prompt?
Is there somewhere ...
1
vote
1answer
42 views
How are daemon processes created in RingoJS?
I would like to use the ringo/daemon module to create daemon processes in RingoJS. However there doesn't seem to be sufficient documentation on how to do so, and I'm really confused. Any help would be ...
1
vote
2answers
125 views
Is it possible to make JavaScript module compatible with both NodeJS and RequireJS?
I have been investigating how various module concepts can be applied within NodeJS and browser applications using the the NodeJS require (obviously in NodeJS apps) and RequireJS for the web browser ...
1
vote
1answer
130 views
Error with required module, argument size must be >= 0
I am developing a mobile application using Appcelerator and am including some configuration functions using commonJS.
The code that I am running is as follows:
app.js
var well = {};
well.config = ...
1
vote
0answers
554 views
Asynchronous Module Definition (AMD) and tight coupling?
So I have been reading up on the CommonJs Modules spec and looking at the dojo implementation and google closure implementation. The concept is pretty cool but I had the question of tight coupling of ...
1
vote
1answer
70 views
What's the difference between scriptName and pathInfo in JSGI/Level0/A/Draft2?
I'm using RingoJS 0.8, and I created a basic jsgi application on top of a ringo/httpserver instance. I'm trying to understand the purpose of each key in a jsgi request object according to the spec: ...
1
vote
2answers
97 views
How to reuse commonjs modules in the browser and server using modulr?
I'm using modulr for using commonjs modules in the browser.
The goal is to be able to reuse some of those modules also in a server environment.
These "shared" modules need to do something like this:
...
1
vote
2answers
187 views
1
vote
1answer
241 views
Good way to bundle and obfuscate a Common.JS project?
What's a good way to bundle a Common.JS project, and then minimize and obfuscate the bundled script? (The library is intended to be used in a browser.)
I'm experienced with the Google Closure ...
1
vote
2answers
405 views
How to post an uploaded file with http?
How would I do the equivalent of this in an express app? That is,
posting a file to facebook:
curl -F 'access_token=xyz' \
-F 'source=@file.png' \
-F 'message=Caption for the photo' \
...
1
vote
1answer
351 views
CommonJS Modules (with nodejs), strangeness
Okay, experimenting with CommonJS module system in the context of NodeJS.
module.exports = pricingCalculator;
function pricingCalculator (options) {
var target = {};
return target;
}
This ...
0
votes
1answer
48 views
Node.JS - Using prototype in a module
So I'm writing a whole bunch of vendor-specific files in node which all have a similar controller pattern, so it makes sense for me to cut them out and put into a common file.
You can see my common ...
0
votes
1answer
28 views
“Error: Cannot find module 'less'” Node.js module loading preference/order/cache?
Here's the situation… So I've created a Node.js module that acts as an interface to some Node.js template engines, Shift.js. That is included inside another Node.js module, Design.io (it's specified ...
0
votes
0answers
15 views
Titanium File Error when CommonJS modules too large?
In my Titanium App, when my included CommonJS modules have over a certain number of methods defined, I get File Error when building the app, how very strange. Is that maybe because it's taking up too ...
0
votes
2answers
59 views
Structuring a NodeJS module - variables and methods
I'm wanting to create modules to structure my NodeJS application, but I'm a little lost, and I haven't found anything (with hours of searching) that is completely definitive on the subject.
Say I'd ...
0
votes
2answers
80 views
CommonJS better than Namespacing in Titanium Apps?
Appcelerator recommend the use of CommonJS-modules in Titanium Apps: https://wiki.appcelerator.org/display/guides/Mobile+Best+Practices
However, on their docs, I cannot find a reasonable answer to my ...
0
votes
2answers
94 views
Add eventlistener to a window in Titanium Mobile commonJS
I have a surely somehow stupid problem with adding an eventlistener to a window I create in a commonJS module in Titanium Mobile.
Consider i.e. the following code:
var SegmentListWindow = ...