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

meanjs app with multiple server layout

I want to use multiple server layout on meanjs framework, but the problem is how I can attach some angular front-end view page to specific server layout, I have a special login page that have a different server layout how I can fix this. how can…
fynx
  • 75
  • 4
3
votes
0 answers

MeanJS restful API for searching, filtering and pagination

I have a search format the client side, that needs to be translated at the server controller to: Item.find(search) .limit(limit).skip(skip) .exec(function(err, items) {return return res.jsonp(items); }); where: search = {"tiltle" : new…
skme
  • 731
  • 6
  • 24
3
votes
1 answer

MEANJS user profile functionality

i'm trying to build a simple app using meanjs. i have 2 modules: the standard user module and a posts module. what i want to achieve is a user profile page which will display some info about particular user and list posts belong to that user. you…
marcieng
  • 1,021
  • 9
  • 14
3
votes
1 answer

How to loop through $resource returned query and get desired value?

I am using MEANJS In my controller i have // Find a list of Cars $scope.findHome = function() { $scope.cars = Cars.query(); console.log($scope.cars); }; Which outputs here i want to get the _id string inside the first array 0:…
Hareesh
  • 6,770
  • 4
  • 33
  • 60
3
votes
1 answer

how does MEAN.js menu work?

In the menus.client.service.js file I'm trying to understand the structure of how the menus in the MEAN.js framework is populated The code starts out with an empty menus object assigned to this this.menus = {} and then at the bottom of the file,…
abcf
  • 685
  • 2
  • 10
  • 25
3
votes
3 answers

ngDialog in mean.js application

I have created a webapp with MeanJS. I want to use ngDialog in the application, but not sure how and where to add the ngDialog.js in the application. Im trying to inject the ngDialog in the controller as shown below, but everytime error as unknown…
MaheshGupta
  • 143
  • 3
  • 12
3
votes
5 answers

How can I use "express-http-proxy" after bodyParser.json() has been called?

I am building a cross system admin app, which will be used as an admin tool for multiple backend systems. The app is built on top of Mean.js. I have setup a /proxy route using "express-http-proxy" to send all sub-routes to their respective backend…
hypno7oad
  • 1,441
  • 1
  • 19
  • 28
3
votes
3 answers

Install ng-table with bower

hi I have a problem installing ng-table with bower bower install ng-table "module.js:340" "throw err;" ^ Error: Cannot find module 'insight' at Function.Module._resolveFilename (module.js:338:15) at Function.Module._load…
mark martin
  • 31
  • 2
  • 5
3
votes
1 answer

mean.js $resource to call express server RESTful API

I come from a completely non web-development background, but having seen the traction that mean.js is picking up, i really wanted to give it a shot. I've followed tutorials online so I've basically started, run and modified the example app but am…
Karan Kapoor
  • 227
  • 2
  • 12
3
votes
1 answer

meanjs find results for crud module by userid

Total newbie to meanjs, used the yo generator-meanjs to create a project, then used the CRUD Module Sub-Generator to add a CRUD module called Pets. In this particular case I want a user who has signed up on the site to add pets that they own so like…
jacko
  • 131
  • 7
3
votes
1 answer

Difference between full stack angular and meanjs

I am pretty new to Node.JS and was trying to explore various YO generators. Could you please explain the basic differences between a Full Stack Angular Generator and MeanJS angular generator using Yeoman.
Manoj Aggarwal
  • 317
  • 2
  • 14
3
votes
1 answer

Adding module "angular-hotkeys" to my mean.js app

Just getting started with angular - so hoping I am not missing something absolutely obvious. I am using mean.js (Mongo, Express, Angular, Node stack) and working on a simple to do app to get me started. I am trying to add the angular-hotkeys…
Salman
  • 494
  • 4
  • 18
3
votes
3 answers

how meanjs implement admin dashboard

meanjs use angularjs for front end mvc , and is a SPA application , so when the admin dashboard is diffrent than the front end page , what is the best way to implement admin dashboard ? perhaps two access points ?
Jeremy
  • 31
  • 1
  • 2
2
votes
1 answer

ReferenceError: number is not defined in MEAN

I am creating CRUD operation in MEAN , i have created dataScehema.js file to defined model var mongoose = require('mongoose'); var countrySchema = mongoose.Schema({ name: { type: number }, country: { type: number } …
Brijesh Mavani
  • 1,070
  • 1
  • 15
  • 23
2
votes
4 answers

Mongoose or MongoDB for Schema definition?

Mongoose is used to define a schema. right? Is it is possible to create a schema with mongoDB through mongo Shell ? like eg: name:String
user8631713