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
0
votes
1 answer

Missing modules after fresh generation with Yeoman's angular-fullstack

So, I generated a fresh angular-fullstack with TypeScript, MongoDB, Bootstrap, Bootstrap UI, Authentication Boilerplate, Twitter and Google OAuth, Grunt, Jasmine, HTML, CSS, and UI-Router for the settings. After I ran npm install and bower install.…
Gabriel Kunkel
  • 2,643
  • 5
  • 25
  • 47
0
votes
2 answers

yeoman angular-fullstack nav dropdown

I have use the Yeoman angular-fullstack generator and absolutely love it! I'm trying to add a dropdown in the navbar. I found the navbar controller in Client/Components/Navbar/navbar.controller.js and added items to the menu object. This works fine…
BOM
  • 1
  • 2
0
votes
1 answer

How can I emit socket event from my clientside controller in daftmonks angular fullstack?

I am using Daftmonk's angular-fullstack, and I want to send data through sockets TO the server. I found examples of how to receive from the server but not the other way around. The socket factory in the package doesn't seem to support any emit…
SuSub
  • 73
  • 1
  • 6
0
votes
0 answers

How do i use the assets pipeline for generator-angular-fullstack for images

Context: I'm using the yo generator for generator-angular-fullstack I've scaffolded my project using the gulp flag I have gulp / express / angular running in development mode correctly When i test gulp serve:dist i see the build process complete…
Jack Murphy
  • 2,952
  • 1
  • 30
  • 49
0
votes
1 answer

With angular-fullstack, socket.io doesn't update my controller (but it sync the 'awesomeThings' example)

I tried a lot of things on my tests, but in the end I came back to the original code from angular-fullstack, and then I tried to clone the working example. Anyway, I cannot get it working: My changes don't synchronize between clients, as the example…
Ark
  • 13
  • 5
0
votes
3 answers

Why is my buffer automatically converted to a nested array

My buffer format is being changed while trying to retrieve it from the MongoDB database, I'm not sure which step of the process is changing it. I defined the mongoose schema as a buffer: var mealSchema = mongoose.Schema({ picture: Buffer, It…
user3382714
  • 185
  • 2
  • 4
  • 9
0
votes
1 answer

display file data sent from nodejs server as it is in angularjs

I am using angular fullstack generator for creating a web application. I want to send a file data from nodejs server to display in the Front end.But data is sent in unformatted manner since i am receiving it in a variable( as a array of strings).…
0
votes
1 answer

unable to create filter and directives in angular fullstack project

I am using angular-fullstack yeoman generator and added some dependencies to my bower.json. I have then sudo npm install and bower install. Now when I run the command yo angular-fullstack:directive simple or yo angular-fullstack:filter propsFilter I…
0
votes
1 answer

Mongoose: Move User Authorized functionality from controller to model

I have a question about best practice and how to add user authorization functionality. Should it be in model, controller or elsewhere. Currently, I have been building validation functions within my Mongoose Models I have been building…
David Cruwys
  • 6,262
  • 12
  • 45
  • 91
0
votes
1 answer

Cannot run grunt task after installing angularfullstack

I got the error below, reinstalled yeoman and angular-fullstack. The message disappeared last night and I was able to connect to my localhost, but came back again when I was trying to run grunt serve (yes I tried installing sass) total…
Nelson Ho
  • 76
  • 4
0
votes
1 answer

load mongoose model from other controller in yeoman angular-fullstack project

I am writing an application using yeoman angular-fullstack, I defined some entities that I would like to access from other entities controller. For example I have in my server->api->Mall I have the following code: var MallSchema = new Schema({ …
moshe beeri
  • 2,007
  • 1
  • 17
  • 25
0
votes
1 answer

Unknown provider: NavbarController - yeoman generator

I generated a project with Generator Angular Fullstack v3.0.2. I opend the server, all worked well. But on the client side I have a problem, I received an error in console error: [$injector:unpr] Unknown provider: $locationAuthProvider <- …
Dorin
  • 2,167
  • 4
  • 20
  • 32
0
votes
1 answer

Argument 'PortfolioController' is not a function, got undefined

Im new to angular and I tried to generate a project with the yeoman angular-fullstack generator. I want to add a new url /portfolio so I duplicated the main-folder on the same level and renamed it to "portfolio". I've created three files: 1)…
Jedi Schmedi
  • 746
  • 10
  • 36
0
votes
2 answers

How to show an image in angular js with express

Hey I am using the angular-fullstack generator to create my webapp. Now I had uploaded my images with this method: I used ng-file-upload for the upload. //server/picture.contoller.js exports.upload = function (req, res) { //Crate…
dominic
  • 385
  • 1
  • 6
  • 23
0
votes
1 answer

Adding a secret code to user sign up

Please forgive any ignorance due to unfamiliarity with this framework and its components, I am learning by doing. I have set up a basic app with angular-fullstack and am exploring some tasks I would like to know how to do. Specifically, I would…
pspahn
  • 2,770
  • 4
  • 40
  • 60