Questions tagged [angular-fullstack]

Related to Angular Full-Stack Generator project

Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node - lets you quickly set up a project following best practices.

https://github.com/angular-fullstack/generator-angular-fullstack

357 questions
2
votes
0 answers

Brand new AngularFullstack app won't deploy to Heroku

I'm having trouble deploying my app to Heroku. I don't have this issue with an app I started several months ago so I think it must be something wrong with the lastest Angular Fullstack. After several hours of trouble shooting I decided to start…
rashadb
  • 2,515
  • 4
  • 32
  • 57
2
votes
2 answers

phonegap app with angular-fullstack-generator

The task is to run an app, created with the angular-fullstack-generator by yeoman, with phonegap. For anybody interested, these are the most promising tutorials I found for this: Getting Started with Mobile App Development with PhoneGap + Yeoman +…
Stefan
  • 1,041
  • 1
  • 14
  • 28
2
votes
1 answer

How to run supertest in authenticated endpoints generated by the angular fullstack generator

I am trying to use supertest to test the behaivour of an authenticated enpoint that I made using the yeoman angular full stack generator. I tryed using the simple auth as described in the the supertests docs but I am still getting 404 errors. The…
2
votes
1 answer

how to emit mongoose event findOneAndUpdate in angular-fullstack?

Angular-fullstack emits document.post('save'); out of the box . Now im trying to listen to an findOneAndUpdate but dont know how to do this i cannot find the event mongoose triggers which could be listened and emitted accordingly.
JyotiChhetri
  • 289
  • 1
  • 7
  • 21
2
votes
1 answer

Add dropdown menu inside sidebar with material design?

I would like when click on polls , open dropdown menu which include sub categories of pulls. How i should change my code in order to add this functionality with material design. In state provider: $stateProvider .state('admin', { …
pm1359
  • 622
  • 1
  • 10
  • 31
2
votes
1 answer

How to view single item from list in Angular's Yoeman Generator?

I have a project where I am using the yeoman fullstack generator which handles my authentication for user login, posting and deleting. I am looking to be able to click on an item that is being populated in a list and on another page view more…
gbya
  • 23
  • 3
2
votes
1 answer

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 expression of $location.path('/login'); does nothing. Even…
deb0rian
  • 966
  • 1
  • 13
  • 37
2
votes
0 answers

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 displays an empty object ({}). Here are (what I think…
Code Stuff
  • 21
  • 1
2
votes
0 answers

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.
Jon F
  • 21
  • 2
2
votes
2 answers

Uglify can't parse "flow.js"

I'm having an annoying issue where uglify (called through grunt-usemin) cannot parse the url for a package named flow.js. This package is installed as a dependency of ng-flow. The url looks like this: bower_components/flow.js/dist/flow.js When I…
2
votes
1 answer

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…
Justin
  • 2,940
  • 3
  • 25
  • 43
1
vote
1 answer

How to sort the table based on the values (time stamp ) of a column in angular

I want to sort the rows of the table based on the time stamp the above image shown that same code i want to sort according to date and time same like that i want to see latest query on top in the table row
1
vote
1 answer

Still error! No self service registration in Okta Directory, alraedy set profile enrollment, trusted cors, clientID and issuer

I am not able to find the SSR on the okta admin directory. I have enable the profile enrollment. I have set the trusted cors, put in issuer and clientID. But my angular still showing error in the browser console GET…
1
vote
0 answers

How to add Content-Security-Policy header in rest api-response spring-boot?

I tried with the below code @EnableWebSecurity @Configuration public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http // ... …
Rjj
  • 249
  • 1
  • 7
  • 22
1
vote
1 answer

migrating application from zend framework (ZF)+ AngularJS to zend framework + Angular

My application is in Zend framework + AngularJS. Where Zend framework gives us the routes and APIs for consuming in application. current zend routes are like - app.domain.com/home, app.domain.com/users I am creating a new module let say it -…