Tower.js is an open source full-stack web framework for Node.js and the browser.
1
vote
1answer
90 views
Why are some many node.js web frameworks building based on Express? Why Does Express do not implement those features?
I am a newcomer to node.js techique stack. I found some many articles are introducing node.js and Express. I know Express is a good web framework including template engine, routing, etc. It is popular ...
0
votes
1answer
109 views
Error: EMFILE, too many connections
On NPM install, I get:
npm http 304 https://registry.npmjs.org/grunt-contrib-uglify
npm http 304 https://registry.npmjs.org/grunt-contrib-qunit
npm ERR! TypeError: Bad argument
npm ERR! at ...
1
vote
1answer
77 views
Errors after “forever server.js”
I'm using for the first time Tower.js and I'm following the README.md instructions. When I try to start the server with the "forever server.js" command, hereby the result:
$ forever server.js
...
0
votes
1answer
93 views
running towerjs on windows 8 gives a TypeError
I installed tower@0.4.2-22 on my windows 8 machine. After this I tried to verify the installation. I started mongod server, the tower server and called http://localhost:3000 in my browser. I get the ...
0
votes
1answer
92 views
Tower.js - how to use the minify/combine asset pipeline?
I understand that I have to create an assets.coffee file that configures how to compile and combine files together and the run cake assets:compile to actually do it.
However, I tried that and I get ...
0
votes
1answer
180 views
Can't get POST response
I'm using Tower.js 0.4.2-20.
I sent a GET and POST request for HTML FORM tag.
'GET' request is no problem response.
but 'POST' request is the following error returned.
I'm missing router setting?
...
1
vote
0answers
120 views
Mix expressjs (api server) and towerjs (backend / frontend)
I have build my api server on expressjs, it works great, but Im testing different frameworks to develop the frontent/backend, because seems more consistent to work with mvc. One of my first options ...
2
votes
1answer
79 views
Layouts/Views in Towerjs
i have a quick question regarding views/layouts.
I have installed & setup a working tower bot, however whenever i call: @render 'viewName' from within a controller, (this includes the example ...
2
votes
2answers
892 views
Cannot find module 'coffee-script'
Trying to get a basic site set up with TowerJS as a test, but ran into this error when running the scaffold generator.
Macbook:app john$ tower generate scaffold Post title:string body:text ...
0
votes
1answer
169 views
Error installing Tower.js
Strugging to get tower.js installed on my snow leopard macbook. Here is the command and the error:
My-Macbook:tower john$ tower new app
node.js:201
throw e; // process.nextTick error, or ...
4
votes
1answer
332 views
grunt watch using lots of cpu on Ubuntu 12.04
I'm using grunt to watch my coffeescript files in a towerjs project and recompile them as they change. The configuration for this is generated by towerjs and seems fairly sane. The problem is, that ...
0
votes
1answer
73 views
Tower.js: “Factory 'posts' doesn't exist”
Using Tower 0.4.2-20: I've followed the examples and the code all seems to be generated but I get a factory not defined error when I run the tests.
To be more specific:
tower new app
cd app
npm ...
1
vote
2answers
385 views
TowerJS without CoffeeScript?
I'm just looking at the possibilities in Node.js web development. I'm used to coding in ASP.NET MVC 3, so TowerJS and Geddy looks friendly and familiar to me (because of the MVC pattern)
However I ...
0
votes
1answer
86 views
EmberJS {{#with}} block not displaying
the controller looks like this
class App.ContactsController extends Tower.Controller
index: (params) ->
@set('person', App.HighrisePerson.create())
@render "index"
the view looks like ...
1
vote
1answer
229 views
How to get the remote ip address in Tower.js?
I'm creating web service, using Tower.js.
i was able to get the HTTP header and User-agent,but couldn't get a remote ip address.
how to get the remote ip address of requester?
I tried
looked for ...
0
votes
1answer
36 views
Wierd routing issues with towerjs
if my router says
@resources "homes"
and i navigate to
/homes
everything loads
but if i have
@match '/', to: 'homes#index'
and navigate to /
nothing happens. I just get my template.
0
votes
0answers
39 views
Routing namespaces and Tower.js
This what i tried according to the docs but the path 404s
Tower.Route.draw ->
@namespace 'api' ->
@match '/twitter', to: 'application#welcome'
localhost:3000/api/twitter
0
votes
2answers
101 views
Towerjs locales error
I am experimenting with towerjs. I just followed the instructions to create a project.
npm install tower -g
npm install grunt -g
mongod
tower new app
cd app
npm install
And when I try to start the ...
0
votes
1answer
122 views
Trouble installing towerjs on ubuntu
I keep getting this error when the towerjs post install script runs
npm ERR! Error: EACCES, open '/home/claire/.npm/e18f6569-thub-com-viatropos-coffeecup-git.lock'
I've tried sudo, and -g but I ...
0
votes
1answer
74 views
Overriding template logic in TowerJS Views
How do I override how templates are rendered in TowerJS? I know I can use Jade, but if I stuck with CoffeeKup, how could I, for instance have this code:
formFor @user, (form) ->
form.fieldset ...
0
votes
1answer
176 views
computed property not displaying correctly in EmberJS, showing [object Object]
If I have an ember object in coffeescript as per the documentation
Person = Ember.Object.extend
name: null
lastName: null
fullName: Ember.computed ->
return 'hello'
.property('name', ...
0
votes
1answer
27 views
Specify or change ID of a Tower model
You are not allowed to set a specific id in the current development branch of towerjs anymore.
Do you know if there is any way to do this?
I can't seem to be able to do:
data =
id: "123456asdasd"
...
0
votes
0answers
148 views
towerjs authentication with passport LocalStrategy
I extended this example https://github.com/viatropos/tower-authentication-example with the LocalStrategy (http://passportjs.org/guide/username-password.html)
Having the following route configured:
...
0
votes
0answers
353 views
By when will be Towerjs production ready? [closed]
Questions about Tower.js:
When will Tower.js be production ready?
Are any beta-level apps currently using Tower.js?
When will the docs be ready? (Website says, “Docs are a work in progress.”)
How ...
1
vote
2answers
260 views
Integrating Expressjs or towerjs with meteor
We are building a web app, and were evaluating to use meteor. At this point meteor does not do much at the server side. ex there is no routing layer, controllers, ORM etc.
So my first question is are ...
1
vote
1answer
604 views
connection fail to connect mongodb in node application
I have an error while starting up server with node server.js. The error details are here:
path.existsSync is now called `fs.existsSync`.
info - socket.io started
[Thu, 02 Aug 2012 00:58:27 GMT] INFO ...
0
votes
1answer
614 views
tower.js with passport.js example
I am new to tower.js i want to integrate passport.js for the facebook authentication please any one can give me me a short but detail example how to to integrate login functionality and where to put ...
0
votes
0answers
513 views
Which NodeJS framework to use: ExpressJS vs RailswayJS vs TowerJS vs GeddyJS vs RESTify for REST API server application [closed]
Client will be using BackboneJS. All is needed is REST API on server.
I've tried RESTify but it doesn't have session manager or build-in database (MongoDB) validation like Railsway.
There is no need ...
10
votes
2answers
6k views
Integrating Angular.js with Node.js (Express+Tower.js)
I am new to node. I very much like approach of AngularJS. I like what I see in towerjs.
Has Anyone wired the two together? I have in mind tower primarily for backend api/rest and angular for ...
0
votes
1answer
93 views
How to upload towerjs assets to S3?
What is the right way to upload production assets to S3 in towerjs?
I have my S3 credentials configured in config/credentials.coffee
Then I try cake assets:publish
and get
...
1
vote
0answers
285 views
Tower.js on Windows 7: Cannot read property watchfile of null
I've followed the installation instructions for Tower.js, and am getting an error when I try to start the server.
TypeError: Cannot read property 'watchfile' of null
My steps for installing have ...
0
votes
0answers
27 views
How to run code on controller load
If i want my controller do something when the page loads how do I do this?
@on "load", "something"
does not work. Not sure what the proper way to do this is? It seems like it should be simple but ...
0
votes
1answer
84 views
New app won't scaffold with Jade templates
When scaffolding a new tower js app i execute
tower new demo --views jade
but i still get the default CoffeeKup layouts.
Any help with this would be great
1
vote
2answers
520 views
Trouble installing tower module - ws module crashes
I'm new to node.js and I have installed it by running the installation from the node website. I've had a play installing packages globally (e.g. should) but now I'm trying to install the tower module ...
0
votes
1answer
92 views
Need towerjs “Mailers” working example
I reed Tower.js doc and totally cant see - how I may get worked mailer?
Mailers section said:
class App.Notification extends Tower.Mailer
# app/views/mailers/welcome.coffee template
@welcome: ...
0
votes
1answer
193 views
Best way to change html state class on active page
I'm testing 2 example projets, one with just express and another with tower.js
I just want to put the correct css class on the li of the active page, in the beginning of the page rendering.
Ex:
I'm ...
0
votes
1answer
81 views
Towerjs model finders - variable scopes
I want do query on model, and next depend on resaults do someting else
The problem:
exists = false
App.User.where(email: "example@domain.com").exists (error, exists) =>
console.log ...
2
votes
1answer
466 views
How do I use One-to-Many Relationships in Tower.js?
So, I've been generating different scaffolds trying to use the One-to-Many relationship features of Tower, but I can't figure out how to actually link up the related instances to make use of the ...
0
votes
2answers
235 views
Relationnal model with Towerjs (coffeescript & mongodb)
I need to recover in towerjs (with mongodb store) quote stock from all stock in all trades of one user.
This code don't work, the while loop does not stop, but I do not understand why
...
0
votes
2answers
276 views
Cookie and session in towerjs
is there some simple example how to use cookies or sessions in towerjs?
I read about Connect Middleware, but I have no experience with it (and unfortunately with node.js also).
If examples are not ...
0
votes
2answers
286 views
Creating a login form using TowerJS
I'll start by saying that I am chiefly a front-end designer/developer and have little experience with MVCs.
I would like to create a login form using TowerJS. Most of my app is out-of-the-box from ...
0
votes
1answer
78 views
Action update in towerjs controller does not work
I'll try create a controler in towerjs, but I have an error while updating action:
TypeError: Property 'id' of object #<Object> is not a function
Here how looks my action:
update: ->
...
6
votes
1answer
2k views
Most mature native Node.js MySQL driver?
I'm using MySQL for a Rails application and would like to be able to use this database for a Node.js app (in particular Tower.js). What is the most mature and/or performant driver available for this ...
0
votes
1answer
515 views
Robust open source Node.js based projects for learning?
I'm working on learning particular node.js (specifically tower.js). I'd like to see some very robust open source application examples that revolve around more complex scenarios, particularly in the ...
0
votes
1answer
350 views
towerjs: running a sample application
I've created a sample application following http://towerjs.org/screencasts.
I've installed all deps with npm and I've also a local mongodb instance up and running.
Anyway every url I try to access ...
3
votes
0answers
579 views
Not able to start towerjs server after creating a new application “Cannot find module mongodb” [closed]
I'm a node newbie and have just started playing around with it. Since I have used rails a fair bit before I wanted to use a framework on node that is built around the same principles as rails. ...
4
votes
0answers
419 views
Where to start with my first real project using the Towerjs framework? [closed]
I'm a total noob. Over the last three or four months, I've worked through a dozen books, dozens of online tutorials, and watched hundreds of screencasts teaching myself first Rails (along with html, ...
5
votes
1answer
6k views
Integrating Ember.js with Node.js (Express+Tower.js)
I'm looking into solutions for integrating Ember.js with Node.js+Express+Tower.js.
I just started looking into Tower.js (the last couple of hours), and it looks like that the framework provides a ...
2
votes
0answers
344 views
tower.js Install error on windows xp x86
I ran npm install tower -g, npm started and here is what I got:
npm http GET https://registry.npmjs.org/tower
npm http 304 https://registry.npmjs.org/tower
npm http GET ...
53
votes
4answers
14k views
RailwayJS vs TowerJS [closed]
Again... selecting framework. I have stopped on these two TowerJS and RailwayJS, but it seams these are very similar and it is very difficult which way to choose
Both are based on Express, both are ...


