Derby includes a powerful data synchronization engine called Racer. While it works differently, Racer is to Derby somewhat like ActiveRecord is to Rails. Racer automatically syncs data between browsers, servers, and a database. Models subscribe to changes on specific objects and queries, enabling ...
0
votes
2answers
43 views
derbyjs for REST API
First of all, I have seen this question: How to best create a RESTful API in Node.js and it has pointed me towards mers, which has been a great help.
But I have also been reading a lot of good things ...
0
votes
1answer
59 views
MongoDB document streaming with HTTP response?
After an all day research on node.js real-time frameworks/wrappers (derby.js, meteor,
socketIO...) I realised, that the more old-fashioned (sorry) way of a restful API
fits all my needs.
One of the ...
2
votes
2answers
297 views
Framework for realtime nodeJS application
I have a little question. Which framework suits best for my planned application.
About the app
It will be modular realtime app for user collaboration on everything that company needs.
So there will ...
2
votes
1answer
114 views
How to integrate derby.js with express.js in node.js?
I am using express framework for my Node App. I need to have some real time updates like notifications in facebook. What I need is integrate derby.js(which is framework build on the top of express) ...
1
vote
1answer
49 views
Can Derby be used with Phonegap?
Is it possible to package a derbyjs application with phonegap?
I simply have not found a single reference to anybody doing this, while meteor is a different story, so naturally I'm curious why that ...
0
votes
1answer
52 views
Derby.js: split client-side only code into several files
I'm trying to split some client-side-only code into several files in a Derby.js project. It has to be client-side only since it's interacting with the TinyMCE editor. So I tried:
...
0
votes
1answer
54 views
Derby.js - npm install derby successful, but derby command not found
I'm following the Derby.js getting started guide. I have run
$ npm install -g derby
and everything succeeds, but when I enter
$ derby new app-name
I get:
-bash: derby: command not found
I'm ...
0
votes
1answer
85 views
Derby.js with Derby Auth errors
I just start with Derby and started out with integrating MongoDB and derby-auth. However, I am having troubles with that and can't figure it out. The following code returns the stacktrace below it. ...
1
vote
0answers
52 views
Are there “Core Data” Style data frameworks for web apps? [closed]
enter code hereI'm looking for a javascript framework similar to Apples "core data", that could be used with a MVC framework like backbone or knockout.
Ideally you'd be able to define a data model ...
2
votes
1answer
66 views
Including JS files in Derby.js
I am trying to learn Derby.js and I am having a lot of trouble. I know I can include packages such as jQuery through npm and add it to the node_modules folder, but this isn't quite what I want to do. ...
-1
votes
1answer
524 views
meteor vs derbyjs who is winning this battle? [closed]
Recently, I was looking for information about meteor and derbyjs and did not find too much about except an excellent derby's article that I would like to share with you. Besides all this I have very, ...
3
votes
0answers
152 views
Is server-side Javascript ready for the mainstream? [closed]
I expect within a few years that the server side programming landscape will look very different and Javascript will be extremely popular. That's just my personal opinion.
But what about in the here ...
0
votes
0answers
12 views
Atomic operations with DerbyJS
Are there any atomic operations with DerbyJS? From the documentation it seems there are no operations like MongoDB addToSet? How does one implement this?
0
votes
1answer
95 views
Derby.js TypeError: Object function (files)
Everytime I try to run the basic server.js that comes with a new project I ge the following errors:
node server.js
Master pid 5078
info - socket.io started
5079 listening. Go to: ...
0
votes
0answers
29 views
derby's model.on seems to ignore updates via html elements
I'm starting with the derby app created by derby new test. If I put the following code in /lib/app/index.js, I would assume that it is fired each time the welcome message is changed.
model.on('set', ...
0
votes
1answer
25 views
How can I add linebreaks in the generated html
I'm starting from the minimal derby application created by derby new first-project. Thereby, the body of the produced html is written in a single line. How can I switch that behavior off to get a ...
0
votes
1answer
157 views
How the client side looks like in meteor or derby
I have been looking around at those cool new node.js frameworks (mostly derby).
They both seem to be isomorphic frameworks... Which if I understand correctly means you 'can use the same code for ...
0
votes
0answers
64 views
Derby creating project
I'm working behind a company proxy, when trying to create a new derbyjs project, I get the error that it is trying to install dependencies
here is the section of the error.
Installing dependencies. ...
0
votes
1answer
114 views
How to use Derby.js model arrays?
I keep getting Fatal error: [object Object] is not an Array and then a server crash, whenever I try to use Derby.js/Racer's model array methods, (push, insert) for example.
app.ready (model)->
...
0
votes
1answer
139 views
What is the recommended why of using derby.js
I'm trying to figure out how to install and use derby.js.
I have installed node.js version: 0.8.17
I have cloned derby from github, and installed, version: 0.3.13
I have installed derby-examples, also ...
1
vote
0answers
83 views
Derby.js - adding/removing unique list elements
I have this as my bootstrapped data, which I push to the model when nothing is retrieved from the DB:
var liveaudience = {
triggers : [
{
'trigger_id': 'vocal_stomp',
'duration': ...
0
votes
0answers
146 views
Client-side model filtering with Derby.js
I am creating a webpage that will display some models as a table and allow the user to filter the items of that model by tags.
I am new to Derby.js and currently have it working to the point where I ...
0
votes
0answers
117 views
DerbyJS - Can't get Mongo storage to work
I have been kidding around with Derby now for a while and am currently trying to wrap my head around the whole racer storage thing. Although I like the idea of not having any MongoDB queries hardcoded ...
1
vote
1answer
135 views
derby - Automatic “refresh” on changes
I'm experimenting with derbyjs and can't figure out how those realtime updates using subscriptions work.
Currently, the app is just an as basic as possible list of post-titles and a textfield at the ...
0
votes
1answer
369 views
Load balance two separate node.js processes on two servers?
I run a small socket.io node.js app that always has a small number of concurrent users. For the most part, it can run 100% of the time on a single process (whether it be on my Linode or Heroku[1]).
...
0
votes
0answers
305 views
How to start with Derby framework of javascript? [closed]
How to begin with derby framework..!
Google not helping to find any good document/example to start with it for beginner ?
Please help..!
Edits : I have already looked at derbyjs.com !
But don't ...
3
votes
1answer
444 views
Meteor on the Frontend, Express on the Backend (NodeJS)
For a site that wants the "realtime" "reactivity" that Meteor provides on the frontend app, and have a job processing backend (something like Kue), clearly the frontend app benefits from Meteor. The ...
0
votes
1answer
137 views
derbyjs running code on server from x-bind
I'm trying to run some server only code from an event on the client in derby.js
I'm using x-bind to bind the event on the view like so:
<a href="#" x-bind="click: func">click me</a>
and ...
2
votes
0answers
285 views
Derby app created using 'derby new test' not working
I've installed derbyjs using npm install -g derby and then created a test app using derby new test.
Then i started the app using node server.js and I got the following output:
info - socket.io ...
3
votes
1answer
142 views
How can I efficiently load test a webapp with a headless browser?
I have experience with a few headless browsers, but only for testing and not load testing. What's the best way to launch 500-1000 websocket clients to load test the application? Is it as simple as ...
0
votes
1answer
360 views
creating user login in derby js
It seems that basic functionality such as user login, can not be done in simple manner: to have username and password field in form on client and based on that to create store.readPathAccess model ...
1
vote
1answer
109 views
Unsubscribe on page change
I'm working on a Derby application and can't seem to figure out how to unsubscribe on page leave. I know how to unsubscribe in general, but hooking the page leave seems to be the problem.
My existing ...
1
vote
1answer
183 views
How do I configure my Derby.js application to use the LESS CSS engine?
According to the Derby blog and this pull request, Derby.js has supported the LESS engine since version 0.3.1. However, I can't figure out where I'm supposed to set the configuration option to switch ...
0
votes
1answer
142 views
Error installing derby@0.3.13
I tried installing derbyjs and I got the following error:
alex@alex-K43U:~/derby$ npm install -g derby
npm http GET https://registry.npmjs.org/derby
npm http 200 https://registry.npmjs.org/derby
npm ...
0
votes
0answers
73 views
Can racer from derbyjs be used with django?
I would like to develop my application with django but use racer for data synchronization between the server and the client.
Is this possible?
1
vote
1answer
147 views
Derbyjs: how to connect to it with no-browser socket.io-client
step:
start a derby app
write a standalone node client app , set up socket.io-client , connect to derby's store's sockets
questions:
the client is not run at browser, so it don't has session, ...
0
votes
1answer
246 views
Derbyjs: access session in app routes or x-bind function
derby new TestDerby
Uncomment server/index.js
add console.log(model.get(),model.session) to app/index.js - this.start
model.session is undefined
(had a quick look at ...
0
votes
3answers
900 views
NodeJS - MongoDB triggers
I'm trying to develop a Log Viewer using DerbyJS, Racer and MongoDB. The logs will be inserted into the MongoDB database by a different source continuously, and my Log Viewer should be able to update ...
0
votes
1answer
120 views
Derbyjs TEMPLATE ERROR
I just started trying out Derbyjs, and I already ran into a problem. I can't find any support for this error, and most likely is some dumb mistake i'm making.
I'm trying to render a view, following ...
1
vote
1answer
203 views
Why my model does not get synced?
I've written my first program with racer. It displays a simple text box manually bound to 'col.doc.prop' path. When I change the value, it does not apply to the store at server.
What causes my ...
6
votes
2answers
657 views
Socket.IO - are the open connections a concern?
I'm currently working with DerbyJS because it fosters clean, DRY client/server code. The side-benefit (main reason why most people use the framework) is it uses Socket.IO to create realtime apps. In ...
0
votes
2answers
309 views
Results from MongoDB
I'm running into two issues with Derby and Mongo. I come from a MySQL and Redis background so maybe I'm just doing something wrong?
1) It seems I can't search for an Id whose type is ObjectId.
...
1
vote
3answers
516 views
What tools to use for a website with lots of “realtime” page updates (coming from a Rails background)?
We are planning to make a "large" website for I'd say 5000 up to many more users. We think of putting in lots of real time functionality, where data changes instantly propagate to all connected ...
3
votes
1answer
433 views
creating derbyjs app in windows
probably a stupidd question. I have installed node.js on my Windows 7 machine and and trying to install derbyjs. i ran the "npm install -g derby" command and everything seemed fine.
Now when i try to ...
13
votes
5answers
2k views
DerbyJS and Authentication
Does DerbyJS in current shape can implement authentication, if yes what's best way to do it? of not is their any work around to do it?
2
votes
2answers
361 views
Using imported docs from MongoDB in DerbyJS
I have a MongoDB collection with data that was not saved through my Derby app. I want to query against that and pull it into my Derby app.
So, I figured that out and here's the code to do it:
get ...
27
votes
2answers
7k views
Meteor vs DerbyJS [closed]
I have just discovered Meteor and DerbyJS. They both seem to be excellent projects and I'm curious how they compare.
I found this blog post by the creators of Derby - Our take on Derby vs. Meteor. ...
1
vote
1answer
404 views
npm dependency resolution -OR- help! i cannot install derbyjs
I have been trying to install Derby, and npm keeps insisting it cannot find a suitable version of express. Here's the command I am using: npm install -g derby. Below is the output. I am running Ubuntu ...
5
votes
1answer
837 views
How to create server-side application logic on Racer / DerbyJS?
I'm learning the ins and outs of the new DerbyJS stack, and I can't find a way to put application logic server-side. The stated intent is that all code should be able to run both in the server, and in ...