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

324 questions
8
votes
1 answer

Yeoman Angular-Fullstack new route does not redirect

I'm using angular-fullstack generator to develop my project. When I try to create a new route using the command (I've installed uiRouter): yo angular-fullstack:route search All the files are created successfully. But whenever I try to open that…
nash
  • 461
  • 1
  • 3
  • 14
7
votes
4 answers

Angular Bootstrap Dropdown not working in Angular Fullstack

I have copied code directly form the Angular Bootstrap UI Plunkr I am using a blank Angular FullStack (Mean) template for building an application. When I use the code from the Angular Bootstrap uib-dropdown it ends up formatted incorrectly and does…
David Cruwys
  • 4,813
  • 8
  • 36
  • 73
6
votes
1 answer

Resolve using UI Router and pass to a component's controller

How do I resolve a variable with UI Router when I am using a component. This is the route: $stateProvider .state('route', { url: '/route', template: '', resolve: { user: (Auth) => { …
Mika
  • 5,497
  • 5
  • 33
  • 77
6
votes
1 answer

Debugging node js in Webstorm when running from gulp

I'm fairly new to this, but I really tried my best looking for up for answers. I used yeoman to generate an application. (used 'angular fullstack' - https://github.com/angular-fullstack/generator-angular-fullstack) It has a gulpfile.babel.js config…
Tal Gvili
  • 249
  • 4
  • 13
6
votes
1 answer

How do I work with $scope and $watch with angular-fullstack generator syntax?

I am using the angular-fullstack generator to generate new routes for my application. The syntax is really unfamiliar and uses a class-like structure. How do I work with this to inject things like $scope and $watch? The main thing I want to do is…
jOshT
  • 1,275
  • 1
  • 9
  • 15
5
votes
2 answers

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 efficiently stack Angular and Rails together. Much…
Ji Lee
  • 53
  • 3
4
votes
1 answer

Inject ngMaterial using webpack, angular fullstack generator

I want to build a web application and I have started building this by using the angular fullstack generator. This generator uses webpack and this is the first time I am using webpack. I have been trying to add the ngMaterial dependency by installing…
Dorin
  • 1,589
  • 2
  • 16
  • 26
4
votes
2 answers

403 when posting in postman using Yeoman's Angular-Fullstack

I am trying to populate a local db using MongoDB in my Yeoman Angular-fullstack application. I used the endpoint command: yo angular-fullstack:endpoint [options] and can get to the route, but it is an empty object. It will not allow me to…
4
votes
2 answers

What's the best way to access env variables on the back end when using angular-fullstack generator?

I'm using Yeoman's angular-fullstack generator. And I have updated my server/config/environment/local.env.js file: module.exports = { DOMAIN: 'http://localhost:9000', SESSION_SECRET: 'vfsite2-secret', SENDGRID : { API_KEY : 'my_api_key' …
4
votes
1 answer

Angular-fullstack generator production app does not properly serve socket.io?

I am running into trouble between two angular-fullstack apps deployed on AWS via same setup and configuration. It seems that socket.io-client/socket.io.js isn't served properly on one of them despite having same settings. Seems like it's getting an…
PGT
  • 984
  • 14
  • 26
4
votes
2 answers

Choosing different environments on yo angular fullstack projects from grunt?

In the scaffold generated project using yo angular fullstack I normally launch the app with grunt using grunt (I am not an expert on it). Example grunt grunt serve and so on. As far as I know I have three different environments (Development,…
ackuser
  • 4,526
  • 5
  • 33
  • 43
4
votes
1 answer

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 to wrap my head around how the pieces fit…
3
votes
3 answers

How to pass models from API to components

What's the best way for transferring models between backend and frontend. Is it better to clone the backend ones in frontend even if not all properties are used ? Or use DTOs to transfer only necessary properties for each use-case ? If there is a…
Ghassen
  • 421
  • 8
  • 21
3
votes
4 answers

Angular 5 formgroup list controls or iterate them

I am using angular 5 with formgorup and wish to iterate the controls, in order to create a dynamic component based on a form, the forms fields are given by an external data service (database etc.) It is declares as follows check = new FormGroup({ …
thebeancounter
  • 3,373
  • 4
  • 36
  • 80
3
votes
1 answer

How to Prevent Webpack Error after npm Install?

I was working on a project, and everything was going good, until I did npm install. Then, Webpack throws the following error: new ForkCheckerPlugin(), ^ TypeError: ForkCheckerPlugin is not a constructor at makeWebpackConfig…
nash
  • 461
  • 1
  • 3
  • 14
1
2 3
21 22