mean-stripdown icon indicating copy to clipboard operation
mean-stripdown copied to clipboard

Stripdown of the mean.io stack for the ngFantasyFootball application

Results 7 mean-stripdown issues
Sort by recently updated
recently updated
newest added

The sample app is incompatible with Express 4.x, which is unfortunate -- especially for newbies (like myself) who are greeted with strange errors as they first hit `node server`. I'd...

I keep getting the following error and was wondering if anyone else has come across this peculiar complain. Essentially, it fails at this line app.get('/leagues/:leagueId', leagues.show) in config/routes.js /Users/username/Development/demo/mean-stripdown/node_modules/express/lib/router/index.js:291 throw...

I just tried following along in the tutorial at [Thinkster](http://www.thinkster.io/pick/GUIDJbpIie/angularjs-tutorial-learn-to-build-modern-web-apps) and as soon as I tried to initially launch the clean version with the node server I got a few...

Hi, I done the tutorial add created my first angular App. When i testing it i found the player field is missing in the create, update, view. so i done...

`/config/middlewares/authorization.js` ``` javascript exports.requiresLogin = function (req, res, next) { if (!req.isAuthenticated()) { return res.redirect('/login') //this should redirect to /signin } next() }; ``` After changing that, when doing any...

I'm not sure what's going on here, but I cloned the repo, ran npm install, and then npm start and navigated to localhost:3000, where I found a blank page staring...