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

MEANJS boilerplate : where to include custom javascript files?

I started using the Mean JS boilerplate (ref website) and would like to know where the recommended place to include public custom javascript, jQuery files (ex. FacebookSDK, jQuery animations,...) . I'm assuming it's going to be somewhere in the…
BassMHL
  • 8,523
  • 9
  • 50
  • 67
7
votes
3 answers

Is search engine optimization on a mean.js full stack javascript application still a major issue an how should it be dealt with

I am working on my first full stack javascript application using specifically mean.js as my start point, and I have started to become nervous and somewhat confused around the issue of search engine optimization (SEO). Has Googles recent efforts…
Finglish
  • 9,692
  • 14
  • 70
  • 114
7
votes
2 answers

Specifying Mongo Query Parameters From Client Controller (MEAN.JS)

I am building an application using MongoDB, Angular, Express, and Node (MEAN stack). I used the MEAN.JS generator to scaffold my application. I will use the articles module as a reference. Suppose I have 7000 records in my articles collection, and…
caseyhanley
  • 73
  • 1
  • 5
7
votes
1 answer

How can I safely remove a CRUD module built with yo (mean.js)

How can I safely remove a CRUD module built with yo meanjs:crud-module ? Is it enough just to delete folder and server files?
Lupus
  • 1,519
  • 3
  • 21
  • 38
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,525
  • 1
  • 11
  • 15
6
votes
1 answer

Mean.js req.isAuthenticated is showing fail?

i have downloaded meanjs version@0.1.12.here i have used two servers for front end i hvae used angular with ionic its running in localhost:3000,for backend i have used meanjs.in that meanjs i have created signup,signin and articles.when ever i am…
user5503464
6
votes
2 answers

Facebook Login is returning 'Undefined' Fields in user profile and it doesn't return email. MEANJs + Passport-facebook

I am using Meanjs.org boilerplate and Facebook Signup returns me to the Signup page. Following are the steps that I have taken so far. 1) Setting up the Facebook App Site URL http://localhost:3000/ and the callback URI of…
Hyder
  • 61
  • 1
  • 2
6
votes
1 answer

MEANJS: Best way to send base64 image to server

Situation I'm using MEAN.JS framework (MongoDB, ExpressJS, AngularJS and NodeJS). Using AngularJS in frontEnd; I have a JSON with a base64 encoded image in a field. What I want? I want to send this JSON to the server (NodeJS). I'm using…
Aral Roca
  • 5,442
  • 8
  • 47
  • 78
6
votes
2 answers

What is the difference between install MongoDB standalone or through npm?

I am pretty new for MEAN and just went some round trip (half day install and uninstall MEAN and everything with it?) and do not want to do it again. The MongoDB I installed on Windows8 is working and already built as a Windows Service. However, then…
ey dee ey em
  • 7,991
  • 14
  • 65
  • 121
6
votes
1 answer

Node.js multi platform project structure

Its really confusing to setup the best project structure for node.js I'm developing node.js application that works on Browser, Mobile and Desktop. This application has many modules like billing, support, dashboard etc.. I started with express.js MVC…
sravis
  • 3,562
  • 6
  • 36
  • 73
6
votes
2 answers

AngularJS ng-cloak does not prevent code blinking in Mean.js

This concerns a MEAN.js environment. I have if-statements in my Angular view to check if I have any results from my database. If there are results then I show them, if not then I show an error message. I have an issue with Angular code blinking:…
Tom
  • 734
  • 2
  • 7
  • 27
6
votes
1 answer

AngularJS - How to list the filenames from a given folder?

I have this folder/directory 'x' in the public folder of my application. Now I have path name till the folder i.e., /path/to/dir/x , but I don't know the names of the files in this directory. Now I need to provide URL links to the files in the html…
Harsha Vardhan
  • 101
  • 1
  • 1
  • 8
6
votes
1 answer

Mean.js Multiple Layouts, Server or Angular Layout

I've been developing a mean.js application. I have an admin theme that I'm trying to integrate with the existing application. My question is Can we have multiple Server Layouts, ? If the logged-in user is Regular User, use layout-1 if the user…
Ronak Jain
  • 1,723
  • 2
  • 24
  • 35
6
votes
2 answers

Tabs in angularjs not working properly with UI-Router and UI-bootstrap

I'm using a MEAN.js boilerplate, you can find the entire code here. I tried to add 2 new tabs to the page rendered after one of the articles have been selected from the list. For this task I decided to use both the UI-Router and UI-Bootstrap for…
Cris69
  • 520
  • 1
  • 14
  • 40
6
votes
2 answers

registerModule with dependencies

I'm building an app with MEAN.JS and I'm trying to use a controller from another module. I've found that I can do this with dependency injection: angular.module(‘MyModule’, [‘Dependency’]); But the way modules are created in MEAN.JS…
Salvatorelab
  • 11,614
  • 6
  • 53
  • 80
1
2
3
58 59