Questions tagged [meanjs]

MEAN.JS is a full-stack JavaScript solution for building web applications using MongoDB, Express, AngularJS, and Node.js.

MEAN.JS is a full-stack JavaScript open-source solution, which provides a solid starting point for MongoDB, Node.js, Express, and AngularJS based applications. The idea is to solve the common issues with connecting those frameworks, build a robust framework to support daily development needs, and help developers use better practices while working with popular JavaScript components.


Documentation :

Related Tags for the used applications:

  • The database itself
  • The interface from express to the database.
  • web application network
  • other tag for the same web application network
  • the web frontend in the version 1.x.x
  • the javascript framework to develop and publish.
877 questions
0
votes
1 answer

Unable to create graphs using highcharts-ng in meanjs. how to create graphs from the existing table in MEANJS

I have tried using highcharts-ng to create graphs in MEANJS but its not working. What is highcharts-ng's best alternative. 1.I have installed highcharts using bower install highcharts-ng 2. Include it in applicationModuleVendorDependencies var…
Adithi
  • 21
  • 1
  • 4
0
votes
1 answer

meanjs app deploy mongodb connection fails but works local

meanjs app, database connection fail (mongoHQ), string hard coded: db: 'mongodb://user:pass@server.mongohq.com/db_name' 1) package.json: https://gist.github.com/anonymous/c864fbc2572bd10f7e90 2) log error:…
lightbots
  • 485
  • 3
  • 13
0
votes
2 answers

How to dynamically include all template partials when using a module in AngularJS

I have several modules that require some template partials to be loaded whenever the module is used. I am storing these files in a folder called partials inside each module subfolder. My starting point for my app is meanjs, and I am storing…
Finglish
  • 9,692
  • 14
  • 70
  • 114
0
votes
1 answer

Adding custom jquery to meanjs yeoman generator

I would like to know if there is a way to include custom jquery to the meanjs yeoman generator. The public folder has serval sub-folders and files in it that seem to be there only for including angular and css files. I am not sure where a custom…
user3681587
  • 566
  • 5
  • 12
0
votes
1 answer

How to focus on a templates input field on replace in angularjs

node.js and angularjs noob here, so be gentle :). I am using meanjs for my stack. I have setup a click to edit function using template replace to add an input field, but I can't work out how to set focus to the input field once automatically when…
Finglish
  • 9,692
  • 14
  • 70
  • 114
0
votes
1 answer

MEANjs: one crud module on top of another crud module instead of the user module

I'm working on a MEAN.js app and I've created a bunch of crud-module using the Yo generator. All the new crud module i create get linked to the main user module which makes sense although i want to have one crud module called 'flats' that links to…
user3721307
  • 199
  • 2
  • 12
0
votes
3 answers

How to use the Meanjs generator with Yeoman?

I am trying to use the Yeoman generator "Meanjs". When I enter yo --help I get…
Chris
  • 6,093
  • 11
  • 42
  • 55
0
votes
1 answer

MeanJS vs SailsJS page loading speed

I have tried both meanjs and sailsjs. I have yet deployed my meanjs app into heroku however, it seems that meanJS is slow when I tried to preview it in codio (cloudIDE). In contrast, SailsJS is blazing fast. Is this only a problem during…
holyxiaoxin
  • 690
  • 1
  • 7
  • 26
0
votes
1 answer

How to populate the User object with Mongoose and Node

I am trying to add a couple of attributes to the scaffolded MEAN.js User entity. locationName: { type: String, trim: true } I also have created another entity Book connected with User. Unfortunately, I think I do not quite grasp the…
0
votes
0 answers

Unexpected token after http JSONP Angular

I would like to create an input field which uses the Google Places API to retrieve suggestions for the user to have it easier to fill in the field. I am using MEAN.js and I have problems to retrieve the information using the Angular controller: //…
0
votes
0 answers

Using MEANJS how do I redirect a user after login to return to a secured page they requested?

Using a boilerplate meanjs footprint, what all do I need to change to modify the following behavior: if a secured page is accessed eg. #!/item/5123154AFBC456D/edit when the user is NOT logged in, I want to capture this information, then authenticate…
Michael Draper
  • 1,928
  • 3
  • 18
  • 24
0
votes
3 answers

Using resolve in meanjs

I have seen various examples of how to use "resolve" to load data before activating a controller (e.g. https://github.com/angular-ui/ui-router/wiki), but I cannot understand how to incorporate this into the MeanJS architecture. Here is a popular…
pythonjsgeo
  • 5,122
  • 2
  • 34
  • 47
0
votes
1 answer

MEAN.js not showing in iframe

I have to display a MEAN.JS app within an iframe, so I started with a simple html file: But then the iframe content is empty, can please somebody help me?
Tebam
  • 403
  • 1
  • 5
  • 8
0
votes
2 answers

I can not get MEAN JS to create new customer

I am new to Node JS and MAEN stack , i am following a tutorial to MEANJS to learn it and in this screencast http://www.youtube.com/watch?v=HNpMCFB8TFI&list=PL6rhBJX0L3TWYrwrQIi1_MzQDvVhkUVPI&index=26 we get to create new customer . However, i am not…
munzx
  • 375
  • 5
  • 13
0
votes
1 answer

Rendering engines for a backend in MEANJS stack

We are creating a website that allows users to write email templates and select items that will be automatically filled in. The program is a MEANJS stack and in the nodejs back-end we have a javascript object with a few variables that we want to use…