Related to GIT project Angular Fullstack : https://github.com/DaftMonk/generator-angular-fullstack

learn more… | top users | synonyms

0
votes
2answers
26 views

Mongoose update with limit

I am looking to update X documents all at once. The short is I basically need to randomly select N documents and then update them as "selected". I'm trying to design an API that needs to randomly ...
0
votes
2answers
78 views

What is the best way to install Angular on Rails 4?

I have populated api using Rails and now wish to mount a front-end framework like Angular on Rails. I've seen people using Gulp or Grunt to do this, but still not 100%. Would love to see how experts ...
1
vote
1answer
34 views

Angular's router is not working when preventing default event

I'm using Angular-Fullstack generator from Yeoman package, including Passport.js (FB, G+, Twitter) I've got into a problem where in my main event $stageChangeStart on application's run, the ...
0
votes
1answer
9 views

Nested Views VS Separate

I'm trying to decide on an Angular Structure for my app. I started with the Angular Full Stack Generator. In UI-Router, you can nest states. It seems logical for me to nest related states. ex: ...
0
votes
1answer
9 views

logging into angular fullstack default app using google oauth2

I have angular fullstack running on localhost:9000 I want to be able to login by clicking the Connect with Google+ button on login page. It does not work and I keep getting error 400. Error: ...
0
votes
1answer
167 views

Implement fullpage.js into angular.js

I'm a bit new in angular.js and I wonder how to proper implement fullpage.js into angular.js. I tried to add fullpage as example ... this code direct into controller i wanted to use for fullpage.js ...
0
votes
1answer
94 views

Hosting an angular-fullstack Yeoman Site on IIS

I have a project built using the angular-fullstack generator for Yeoman. I would like to deploy this to a Windows Server running IIS. I have successfully generated the "dist" folder using Grunt and ...
2
votes
0answers
32 views

How to access params in angular-fullstack's endpoint?

I created an endpoint using yo angular-fullstack:endpoint question my question is how can I configure/access the params? for example when requesting /api/questions/1 and inspecting the req object ...
1
vote
0answers
24 views

Upload CSV to MongoDB using Yeoman Angular-Fullstack

I have tried many file upload modules for Angular, Node, Express, but just don't know how to wire it together. Would someone please start from the beginning to walk me through an example? Thank you.
1
vote
0answers
112 views

Deploying yeoman fullstack app to elastic beanstalk

I'm looking to use elastic beanstalk for my yeoman angular-fullstack app, though I'm having some trouble when deploying to elastic beanstalk. So far I have: my local yeoman angular fullstack ...
0
votes
0answers
17 views

Angular fullstack generator ignoring css in assets folder in build

I'm fairly new with using the Yeoman angular fullstack generator but stumbling upon some strange behaviour. Before using a yeoman packages, i was doing stuff the old fashion way with custom ...
0
votes
0answers
19 views

Is it possible to set the boostrap columns to 24 in a yo angular-fullstack project?

I have a fairly large project underway that was generated using the yo angular-fullstack framework, which I highly recommend. In the past, I have utilized 24 column settings for bootstrap by ...
0
votes
0answers
8 views

Bower not installing on zsh

I tried both 'npm -g install bower' and 'sudo pm -g install bower' still says 'zsh: command not found: bower'
0
votes
0answers
36 views

Angular-Fullstack Mongoose Post into a Array

$http.post('/api/user/' + userid._id, { posts: {body: 'hallooo'} }); //Doesn't work.. but $scope.deleteThing = function(thing) { $http.delete('/api/things/' + thing._id); }; Works fine. I ...
0
votes
0answers
91 views

Angular-fullstack ui-router not routing properly to parent state

I have a problem with $state.go('^'); when at edit state of specific medication. Weird thing is that when I hit the save button it goes through main.detail state back to the main state. I'm using ...
0
votes
0answers
28 views

Upload Image in MeanJS

I can't upload image on my meanjs app, I don't know why but I can't nake the post to express. I followed this example: Adding a picture to the MEAN.JS sample with Angular-file-upload But my service ...
0
votes
0answers
70 views

Heroku app build using generator-angular-fullstack failing

I build my app using sudo grunt build. There are no errors. The dist folder is built and the app works great using sudo grunt serve:dist. When I try to deploy to heroku for the first time, it fails ...
0
votes
0answers
87 views

Redirect to original request after authentication, Angular-Fullstack?

I am using the angular-fullstack (https://github.com/DaftMonk/generator-angular-fullstack) from the yeoman generator for the MEAN stack. I am new to most of these technologies and am just beginning ...
0
votes
0answers
24 views

Running “clean:server” (clean) task Cleaning .tmp…ERROR

Ive run a fullstck yeoman generator. all worked fine till Ive added a bower dependency of bxslider run bower install bxslider --save run bower install run grunt serve got the following error ...
0
votes
0answers
52 views

How to get socket.io to recognize when model has been updated

I'm relatively new to MEAN/Mongoose/socket.io and am missing something that seems like it'd be basic, but regardless, it's keeping me from moving forward. I'm keeping track of a group's meetings and ...
0
votes
0answers
39 views

Angular Fullstack and Grunt Build does not put versioning into built index.html

After I have run grunt build, and then nodemon dist/server/app.js I am seeing this output, when HTTP-Getting my index.html: GET /app/app.css 404 6.638 ms - 24 Now when I open the build file: ...
0
votes
0answers
38 views

Angular-Fullstack Deployment to Openshift Error

I have deployed an angular-fullstack (Yeoman generator) app to Openshift successfully, however, when I make changes and try to push the changes to Openshift via the command "grunt ...
0
votes
0answers
19 views

Heroku node app with custom domain SAMEORIGIN error

I have a node app on Heroku which has a href links to external pages and get this error when trying to access the link: Refused to display '...mysite.com/page.html' in a frame because it set ...
0
votes
0answers
49 views

grunt usemin should upate relative pathes at css files

i created a project with yeoman angular-fullstack. for the folder management of my company I changed it like so src/ client/ project index.html app/ include/ ...
0
votes
0answers
189 views

Trying to connect to socket.io in angular-fullstack from another node app

I did a quick spike where I started an Express server that was also responding to websockets using socket.io, and another node app that was just connecting to that websocket server and emitting ...
-1
votes
0answers
18 views

express not installing on nodejs

For good measure in uninstalled express with npm uninstall express I reinstalled using npm install express WITHOUT sudo or -g I am using yoeman's angular-fullstack I will reinstall that the same ...