Tagged Questions
11
votes
1answer
887 views
Yeoman inside ExpressJS
I'd still like to try to get an example running w/ Yeoman and Express.
I tried the following and it worked "okay", but I'm stuck merging the routes. (over simplified for readability)
mkdir test
cd ...
9
votes
2answers
5k 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 ...
8
votes
3answers
709 views
Build tool: Coffeescript/Node project with multiple components
I'm starting a project at work and was wondering what the best build tool to use would be.
The whole thing is written in CoffeeScript, using AngularJS for the client-side and NodeJS for the server.
...
7
votes
2answers
2k views
Getting started with Node.js, angular.js and MongoDB, modeling relations and other ramp up tips
I am coming from Java and relational world and trying to get my feet wet. The app i am working on is an appointment scheduling system using node.js and MOngo on backend and client is in angular.js.
I ...
7
votes
2answers
2k views
Structuring a NodeJS and Angular JS app
I'm about to attempt my first Angular JS project and it makes sense to use Node JS for the back end, even though it means learning both Angular and Node from scratch at the same time.
The first thing ...
6
votes
3answers
2k views
Client Side HTML MVC Rendering vs Server Side Rending via NodeJS
We are looking for options on our team to decide between a Angular based client side MVC approach and a server side NodeJS / ExpressJS server side render approach.
Our Angular app downloads as one ...
6
votes
1answer
3k views
Advantages of Meteor.js over Angular.js + Node.js [closed]
I am exploring Meteor.js vs Angular.js + Node.js (ExpressJS). I am very impressed with Meteor's reactive programming feature. But I am not going to build online game or real-time applications that ...
6
votes
2answers
195 views
Infinite redirect loop on Android when redirecting from server with AngularJS
I'm building a web/phonegap application for an older version of Android (2.3.x). Everything works great up until I try to add any server redirection into the mix. Here's the scenario:
The server ...
4
votes
1answer
384 views
Is Angular.js Just for Single Page Applications (SPA)
We are looking at options to build the front end of an application we are creating and are trying to evaluate a tool that will work for us and give us the best platform to move forwards.
This is a ...
4
votes
1answer
663 views
Testing Angular express node app
I have an issue with testing my application with both jasmine-node and mocha (with zombie). The point is angular doesn't work with this test environment - when browser.visit "http://localhost:3000/" ...
3
votes
1answer
597 views
Node.js + AngularJS + Socket.io : pushed data not available in the controller
I've setup my Node server to push out some data at random intervals, and the data is getting to the client/browser; however, I can't figure out how to access it in my app's controller.
#node.js file: ...
3
votes
1answer
80 views
Yeoman - Current best way to use it with AngularJS & Express?
I am using Yeoman 1.0 beta and not interested in the express-stack branch. What, then, is the recommended/best way to use Yeoman to scaffold an Angular project within Express?
I tried running yo ...
2
votes
2answers
854 views
How to use AngularJS routes with Express (Node.js) when a new page is requested?
I'm using Express, which loads AngularJS from a static directory. Normally, I will request http://localhost/, in which Express serves me my index.html and all of the correct Angular files, etc. In ...
2
votes
1answer
406 views
Angular express coffee-assets controller not found
In my angular node.js app based on angular-express-blog and express-coffee I have an issue with defenition angular.module before controllers pic:
Uncaught ReferenceError: IndexCtrl is not defined
...
2
votes
2answers
235 views
Express and AngularJS - web page freezes when attempting to open home page
I will explain the issue in as much detail as possible.
I am attempting to use AngularJS with Express and am running into trouble. I wish to display HTML files (not using a templating engine). ...