Get started with Laravel 5.3 and AngularJS (material)

Overview

Laravel 5.3 Angular Material Starter

Latest Stable Version Latest Unstable Version Build Status StyleCI Code Climate License Join the chat at https://gitter.im/jadjoubran/laravel5-angular-material-starter

Laravel & Angular

Demo

An online demo is available.

Angular (2+) update

While this starter used to be an excellent starting point for Laravel 5 & Angular 1.x, using Angular 1.x results in large JavaScript bundles which makes mobile experience slow.
Thus it's recommended to upgrade to Angular (2+). You can use the shiny new Laravel & Angular package

Docs

View Latest Docs for installation steps & tutorials.

Running on 3.2? Here are the 3.2 Docs

Screencasts

Screencasts on Youtube.

Issues, questions and feature requests

Open a new issue, I'd love to help.

Do It Yourself (Outdated)

A nice article on sitepoint that explains the first few versions of this repository. Recommended read if you're not familiar with the underlying technologies.

Community translations

Contributing

Thank you for contributing to this repository.

Here are the guidelines:

  1. If you are adding/modifying backend functionality, make sure to include the appropriate test. Let me know if you need help writing the test.
Comments
  • NotFoundHttpException

    NotFoundHttpException

    hi @jadjoubran following the tutorial V3.1, i got error: Sorry, the page you are looking for could not be found. screen shot 2016-03-01 at 13 49 27

    i checked my console and it shown: screen shot 2016-03-01 at 13 53 39

    Here is what my route.js => angular/config/Routesconfig.js looks like:

    export function RoutesConfig($stateProvider, $urlRouterProvider) {
        'ngInject';
    
        var getView = function(viewName) {
            return './views/app/pages/' + viewName + '/' + viewName + '.html';
        };
    
        $urlRouterProvider.otherwise('/');
    
        $stateProvider
            .state('app', {
                abstract: true,
                views: {
                    header: {
                        templateUrl: getView('header')
                    },
                    footer: {
                        templateUrl: getView('footer')
                    },
                    main: {}
                }
            })
            .state('app.landing', {
                url: '/',
                data: {},
                views: {
                    'main@': {
                        templateUrl: getView('landing')
                    }
                }
            })
            .state('app.create_post', {
                url: '/create-post',
                views: {
                    'main@': {
                        templateUrl: getView('create_post')
                    }
                }
          });
    }
    
    

    what should i do?

    bug 
    opened by odyright 57
  • well done! How to start building a new app/project

    well done! How to start building a new app/project

    Well done! you did a good work! please i need your help, i followed all the instruction installing your project. And i see the side menu bar on the left. But now what am'i supposed to do? and how could i began ? please, i'm new & unexperimented developper! could you give me an advise and sample?

    help wanted 
    opened by odyright 43
  • Upcoming version - 3.3.0

    Upcoming version - 3.3.0

    Just before the final Angular 2 release, I'm working on an intermediary release that's focusing on one main aspect for Laravel & Angular 1

    I'm trying to make it a Progressive Web App by providing support for the cool stuff that are recently made available in some browsers

    It's still way too early in development, but everything's happening on branch feature-pwa Also some early planning is happening on trello

    The goal is to have an architecture that is similar to the voice memos app (when you refresh, the main app shell is loaded from Service Workers allowing for a native like user experience) or any other Progressive Web App (http://pwa.rocks/)

    I haven't seen any Angular 1 that's made into a progressive web app before, so it seems that it's challenging 😄 However Angular 2 can be configured to have a pwa support easily

    The first step was to optimize the critical rendering path and by immediately painting the app shell.. which is kind of working but the fonts are still messing up

    I will keep on pushing regular updates here, as usual feedback is highly appreciated (although it's barely usable right now) and we can always chat on gittr

    Community Feedback 
    opened by jadjoubran 38
  • Integrate UIGrid md-table

    Integrate UIGrid md-table

    Hi, i',ve resolved all issue for the installation using apache's virtual host and i begin to develop a cms startinf from this template. I've looking for integrate a ui-grid librariy (http://ui-grid.info/) which i've used in another project. I follow all docs step's

    • bower install ui.grid --save

    • include ui-grid ui.grid.selection,ui.grid.pagination in app module

    • generate component for using grid With test data all works fine but as soon as i try to include an apiGrid function (which works in previous project) i recived an error in console. this is the component code: class TicketsController{ constructor(uiGridConstants,$scope,$log){ 'ngInject'; this.uiGridConstants = uiGridConstants; this.$scope = $scope; this.$log = $log; // }

      $onInit(){ this.$scope.data = [ { name:"name", gender:"male", company:"h" } ]; this.$scope.gridOptions1 = { enableSorting: false, data:this.$scope.data, columnDefs: [ { field: 'name' }, { field: 'gender' }, { field: 'company', enableSorting: false } ], enableRowSelection: true, onRegisterApi: function( gridApi ) { this.$scope.gridApi = gridApi; this.$scope.gridApi.selection.on.rowSelectionChanged(this.$scope,function(row){ var msg = 'row selected ' + row.isSelected + "---- "; msg += 'row selected ' + JSON.stringify( row.entity); $log(msg);

              });
          }
      }
      

      } } export const TicketsComponent = { templateUrl: './views/app/components/tickets/tickets.component.html', controller: TicketsController, controllerAs: 'vm', bindings: {} } and this is the error: angular.js:13550TypeError: Cannot set property 'gridApi' of undefined at Object.onRegisterApi (http://portale.local:8080/build/js/app-459cbda8d9.js:533:42) at Grid.renderingComplete (http://portale.local:8080/build/js/vendor-1106081468.js:64011:20) at post (http://portale.local:8080/build/js/vendor-1106081468.js:61785:16) at http://portale.local:8080/build/js/vendor-1106081468.js:9688:44 at invokeLinkFn (http://portale.local:8080/build/js/vendor-1106081468.js:9694:9) at nodeLinkFn (http://portale.local:8080/build/js/vendor-1106081468.js:9093:11) at http://portale.local:8080/build/js/vendor-1106081468.js:9433:13 at processQueue (http://portale.local:8080/build/js/vendor-1106081468.js:15961:28) at http://portale.local:8080/build/js/vendor-1106081468.js:15977:27 at Scope.$eval (http://portale.local:8080/build/js/vendor-1106081468.js:17229:28)

      thanks for awesome works

    Support 
    opened by num3r06 32
  • Laravel & Angular 2 starter - Design document

    Laravel & Angular 2 starter - Design document

    Hi All,

    I have started working on the design document for the next major version.

    I added a few ideas, I'd love to get the community's feedback. Feel free to leave suggestions or comment here

    https://docs.google.com/document/d/1OlOgMb3Z19T1RAE79jDyJ9hMXNZKaNIlynSRnKpyhIw/edit?usp=sharing

    😄

    Community Feedback Needs action 
    opened by jadjoubran 32
  • Error @npm install (Step)

    Error @npm install (Step)

    npm ERR! Error: ENOENT, chown '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/osenv/.travis.yml' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/osenv/.travis.yml npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/osenv/.travis.yml npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! fstream_finish_call chown npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:305:19 npm ERR! fstream_stack /usr/lib/nodejs/graceful-fs/polyfills.js:133:7 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/nopt/.travis.yml' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/nopt/.travis.yml npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/nopt/.travis.yml npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http 304 https://registry.npmjs.org/is-number npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/fstream/.travis.yml' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/fstream/.travis.yml npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/fstream/.travis.yml npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, chown '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/npmlog/example.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/npmlog/example.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/npmlog/example.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! fstream_finish_call chown npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:305:19 npm ERR! fstream_stack /usr/lib/nodejs/graceful-fs/polyfills.js:133:7 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/path-array' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/path-array'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/path-array' } npm http 304 https://registry.npmjs.org/randomatic npm ERR! EEXIST, mkdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/semver' File exists: /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/semver Move it away, and try again.

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/semver npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/semver/LICENSE npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code EEXIST npm ERR! errno 47 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:171:23 npm ERR! fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! EEXIST, mkdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/tar' File exists: /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/tar Move it away, and try again.

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/tar npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/tar/.travis.yml npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code EEXIST npm ERR! errno 47 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:171:23 npm ERR! fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/rimraf/rimraf.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/rimraf/rimraf.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/rimraf/rimraf.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/graceful-fs/legacy-streams.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/graceful-fs/legacy-streams.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/graceful-fs/legacy-streams.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http 304 https://registry.npmjs.org/repeat-string npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/glob/common.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/glob/common.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/node-gyp/node_modules/glob/common.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! EEXIST, mkdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/request/node_modules/har-validator/node_modules/bluebird/js/main' File exists: /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/request/node_modules/har-validator/node_modules/bluebird/js/main Move it away, and try again.

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/request/node_modules/har-validator/node_modules/bluebird/js/main npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/request/node_modules/har-validator/node_modules/bluebird/js/main/schedule.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code EEXIST npm ERR! errno 47 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:171:23 npm ERR! fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http GET https://registry.npmjs.org/core-util-is npm http 304 https://registry.npmjs.org/is-relative npm http 304 https://registry.npmjs.org/hash.js npm http GET https://registry.npmjs.org/esprima npm http GET https://registry.npmjs.org/esutils npm http GET https://registry.npmjs.org/estraverse npm http GET https://registry.npmjs.org/optionator npm http 304 https://registry.npmjs.org/wrappy npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules' } npm http GET https://registry.npmjs.org/camelcase npm http GET https://registry.npmjs.org/map-obj npm http 304 https://registry.npmjs.org/invert-kv npm http GET https://registry.npmjs.org/repeating npm http 304 https://registry.npmjs.org/jsonpointer/2.0.0 npm http 304 https://registry.npmjs.org/generate-object-property npm http 304 https://registry.npmjs.org/asn1.js npm http 304 https://registry.npmjs.org/core-util-is npm http 304 https://registry.npmjs.org/esprima npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/accord/node_modules/lodash/internal/replaceHolders.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/accord/node_modules/lodash/internal/replaceHolders.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/accord/node_modules/lodash/internal/replaceHolders.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http GET https://registry.npmjs.org/lru-cache npm http 304 https://registry.npmjs.org/esutils npm http 304 https://registry.npmjs.org/generate-function npm http 304 https://registry.npmjs.org/estraverse npm http 304 https://registry.npmjs.org/optionator npm http 304 https://registry.npmjs.org/camelcase npm http 304 https://registry.npmjs.org/map-obj npm http 304 https://registry.npmjs.org/align-text npm http 304 https://registry.npmjs.org/align-text npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/create-ecdh/node_modules/elliptic/node_modules/hash.js/.travis.yml' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/create-ecdh/node_modules/elliptic/node_modules/hash.js/.travis.yml npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/create-ecdh/node_modules/elliptic/node_modules/hash.js/.travis.yml npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http 304 https://registry.npmjs.org/repeating npm http 304 https://registry.npmjs.org/lru-cache npm ERR! Error: ENOENT, chown '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-aes/node_modules/buffer-xor/.npmignore' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-aes/node_modules/buffer-xor/.npmignore npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-aes/node_modules/buffer-xor/.npmignore npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! fstream_finish_call chown npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:305:19 npm ERR! fstream_stack /usr/lib/nodejs/graceful-fs/polyfills.js:133:7 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/diffie-hellman/node_modules/miller-rabin/node_modules/brorand' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/diffie-hellman/node_modules/miller-rabin/node_modules/brorand'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/diffie-hellman/node_modules/miller-rabin/node_modules/brorand' } npm ERR! weird error 127 npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/des.js/lib/des/des.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/des.js/lib/des/des.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/des.js/lib/des/des.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, open '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/cross-spawn/node_modules/cross-spawn-async/node_modules/which/node_modules/is-absolute/node_modules/is-relative/index.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-sass/node_modules/node-sass/node_modules/cross-spawn/node_modules/cross-spawn-async/node_modules/which/node_modules/is-absolute/node_modules/is-relative/index.js npm ERR! code ENOENT npm ERR! errno 34 npm ERR! EEXIST, mkdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/strip-ansi/node_modules/ansi-regex' File exists: /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/strip-ansi/node_modules/ansi-regex Move it away, and try again.

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/strip-ansi/node_modules/ansi-regex npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/strip-ansi/node_modules/ansi-regex/readme.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code EEXIST npm ERR! errno 47 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:171:23 npm ERR! fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! EEXIST, mkdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject' File exists: /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject Move it away, and try again.

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/README.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code EEXIST npm ERR! errno 47 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:171:23 npm ERR! fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/package.json' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/package.json npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/package.json npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/package.json' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/package.json npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/package.json npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/public-encrypt/node_modules/bn.js/test/binary-test.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/public-encrypt/node_modules/bn.js/test/binary-test.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/public-encrypt/node_modules/bn.js/test/binary-test.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/regenerator/node_modules/defs/node_modules/esprima-fb/test/test.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/regenerator/node_modules/defs/node_modules/esprima-fb/test/test.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/regenerator/node_modules/defs/node_modules/esprima-fb/test/test.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/node_modules/acorn/dist/acorn.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/node_modules/acorn/dist/acorn.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/node_modules/acorn/dist/acorn.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/elliptic/test/hmac-drbg-test.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/elliptic/test/hmac-drbg-test.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/elliptic/test/hmac-drbg-test.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-less/node_modules/less/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/cipher-base' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/cipher-base'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/cipher-base' } npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/parse-asn1/node_modules/evp_bytestokey/index.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/parse-asn1/node_modules/evp_bytestokey/index.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/parse-asn1/node_modules/evp_bytestokey/index.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/babelify/node_modules/babel-core/node_modules/regexpu/node_modules/recast/node_modules/esprima-fb/test/test.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/babelify/node_modules/babel-core/node_modules/regexpu/node_modules/recast/node_modules/esprima-fb/test/test.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/babelify/node_modules/babel-core/node_modules/regexpu/node_modules/recast/node_modules/esprima-fb/test/test.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, chown '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/estraverse/README.md' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/estraverse/README.md npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/estraverse/README.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! fstream_finish_call chown npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:305:19 npm ERR! fstream_stack /usr/lib/nodejs/graceful-fs/polyfills.js:133:7 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esprima' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esprima'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esprima' } npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/core-js/client/core.min.js.map' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/core-js/client/core.min.js.map npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/core-js/client/core.min.js.map npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/regenerator/node_modules/commoner/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/regenerator/node_modules/commoner/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-babel/node_modules/babel-core/node_modules/regenerator/node_modules/commoner/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esutils/README.md' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esutils/README.md npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esutils/README.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/parse-asn1/node_modules/browserify-aes/authCipher.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/parse-asn1/node_modules/browserify-aes/authCipher.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/parse-asn1/node_modules/browserify-aes/authCipher.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/optionator/README.md' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/optionator/README.md npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/optionator/README.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/README.md' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/README.md npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/README.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http GET https://registry.npmjs.org/kind-of npm http GET https://registry.npmjs.org/longest npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/cipher-base/test.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/cipher-base/test.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-cipher/node_modules/browserify-des/node_modules/cipher-base/test.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, chown '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-phpspec/node_modules/gulp-todo/node_modules/gulp-util/node_modules/dateformat/node_modules/meow/node_modules/indent-string/node_modules/repeating/node_modules/is-finite/readme.md' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-phpspec/node_modules/gulp-todo/node_modules/gulp-util/node_modules/dateformat/node_modules/meow/node_modules/indent-string/node_modules/repeating/node_modules/is-finite/readme.md npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-phpspec/node_modules/gulp-todo/node_modules/gulp-util/node_modules/dateformat/node_modules/meow/node_modules/indent-string/node_modules/repeating/node_modules/is-finite/readme.md npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! fstream_finish_call chown npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:305:19 npm ERR! fstream_stack /usr/lib/nodejs/graceful-fs/polyfills.js:133:7 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm http GET https://registry.npmjs.org/is-property npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-phpspec/node_modules' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-phpspec/node_modules'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/gulp-phpspec/node_modules' } npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/escodegen.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/escodegen.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/escodegen.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm ERR! Error: ENOENT, lstat '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/module-deps/node_modules/stream-combiner2/node_modules/through2/node_modules/readable-stream/node_modules/core-util-is/util.js' npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! [email protected]

    npm ERR! System Linux 3.16.0-50-generic npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" npm ERR! cwd /var/www/html/laravel/laravel5-angular-material-starter npm ERR! node -v v0.10.25 npm ERR! npm -v 1.3.10 npm ERR! path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/module-deps/node_modules/stream-combiner2/node_modules/through2/node_modules/readable-stream/node_modules/core-util-is/util.js npm ERR! fstream_path /var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules/browserify/node_modules/module-deps/node_modules/stream-combiner2/node_modules/through2/node_modules/readable-stream/node_modules/core-util-is/util.js npm ERR! fstream_type File npm ERR! fstream_class FileWriter npm ERR! code ENOENT npm ERR! errno 34 npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:284:26 npm ERR! fstream_stack Object.oncomplete (fs.js:107:15) npm WARN optional dep failed, continuing [email protected] npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/watchify/node_modules' } npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/elliptic/node_modules/brorand' npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/elliptic/node_modules/brorand'] npm ERR! error rolling back errno: 53, npm ERR! error rolling back code: 'ENOTEMPTY', npm ERR! error rolling back path: '/var/www/html/laravel/laravel5-angular-material-starter/node_modules/laravel-elixir/node_modules/browserify/node_modules/crypto-browserify/node_modules/browserify-sign/node_modules/elliptic/node_modules/brorand' }

    help wanted Documentation & Demo environment:vagrant 
    opened by shadywattay 32
  • CI : Branch 3.2.1's build is not passing

    CI : Branch 3.2.1's build is not passing

    • I'm submitting a ...
    • [x] bug report
    • [ ] feature request
    • [ ] support request
    • [x] build not passing on 3.2.1

    branch 3.2.1's build is not passing on travis-ci since last commit.

    I tried to figure out what is happening, maybe related to .env file not present but can't understand why it would work before and also for default branch (master) then...

    What is your ci/build workflow ? Do you create new branch for each fix then push it to github to activate the ci ?

    Thanks

    • Laravel & Angular version: 3.2.1
    bug Needs action 
    opened by chihab 26
  • Blank Page on fresh install

    Blank Page on fresh install

    I am getting a blank page after installing the starter, i dont know why. This what i am getting on viewing the console 6561e1e0-f5ad-11e5-8a16-487fa74b02e9

    I am a newbie in this, please help

    Support 
    opened by makokhavictor 24
  • Version 3 brainstorming

    Version 3 brainstorming

    I started drafting some ideas for the upcoming version 3.

    I'd love to get the feedback of users of this repository.

    The brainstorming is happening on a private trello board.

    I just have a few cards that you can comment on or maybe add new ones.

    @GrahamCampbell and @Bodom78 can I add you to the trello board? Your feedback is very important

    If anyone else is interested, drop me an email or comment here and I'll invite you to the board.

    You can leave the board whenever you want, don't worry about it being spammy.

    Thanks


    Update

    Draft is almost finalized, so the board is now public

    https://trello.com/b/tZ997reo/laravel-angular-material-starter

    Feel free to comment or add new cards

    enhancement Community Feedback Easy Pick Version 3 
    opened by jadjoubran 23
  • Npm install fails on packagist stable version 3.2.0 - due to laravel-elixir version

    Npm install fails on packagist stable version 3.2.0 - due to laravel-elixir version

    Hi,

    • I'm submitting a bug report
    • Laravel & Angular version: 3.3.0-beta
    • I'm a Laravel newbie :)

    When running npm install, I've got this error:

    npm ERR! Linux 4.2.0-c9
    npm ERR! argv "/home/ubuntu/.nvm/versions/node/v4.4.5/bin/node" "/home/ubuntu/.nvm/versions/node/v4.4.5/bin/npm" "install" "laravel-elixir"
    npm ERR! node v4.4.5
    npm ERR! npm  v2.15.5
    npm ERR! code EPEERINVALID
    
    npm ERR! peerinvalid The package [email protected] does not satisfy its siblings' peerDependencies requirements!
    npm ERR! peerinvalid Peer [email protected] wants laravel-elixir@^5.0
    
    npm ERR! Please include the following file with any support request:
    npm ERR!     /home/ubuntu/workspace/laravel5-angular-material-starter/npm-debug.log
    

    I've got to set laravel-elixir to version 5.0.0 on package.json to fix this.

        "laravel-elixir": "^5.0.0",
        "laravel-elixir-livereload": "^1.1.1",
        "main-bower-files": "^2.1.0",
    
    

    Thanks.

    Support 
    opened by chihab 22
  • How to invoke this.$auth.setToken() if the call is not triggered from Angularjs

    How to invoke this.$auth.setToken() if the call is not triggered from Angularjs

    Hi Everyone,

    I got a case:

    1. An application finished the authentication, and then send the openID to my Laravel application.
    2. Laravel application using that openID to generate the token, and then send to index.blade.php
    3. index.blade.php can get the token.

    However, how could I set the token into Angularjs? like this.$auth.setToken(response.data.token) in login-form.component.js.

    I spend quite a lot of time to try to resolve, but still failed… Please help, thanks in advance.

    Best Regards, Andrew He

    Support 
    opened by AndrewLaBabies 22
  • Update .codeclimate.yml

    Update .codeclimate.yml

    wip

    What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)

    • [ ] Bugfix
    • [ ] Feature
    • [ ] Code style update (formatting, local variables)
    • [ ] Refactoring (no functional changes, no api changes)
    • [ ] Build related changes
    • [ ] CI related changes
    • [ ] Other... Please describe:

    What is the current behavior? (You can also link to an open issue here)

    What is the new behavior?

    Does this PR introduce a breaking change?

    • [ ] Yes
    • [ ] No

    If this PR contains a breaking change, please describe the impact and migration path for existing applications: ...

    Other information:

    opened by malak-jridi 0
  • AngularJs and PHP

    AngularJs and PHP

    I have created an application using CI(Code Ignitor) and AngularJs in which I have applied AngularJs in views. Now, whenever I am clicking button so whole of the CRUD operation should be performed by AngularJS. But, scope of class-group controller is not executing, i.e. the scope is not getting transferred from main(Main Page) controller to class-group controller(Controller via which CRUD is getting executed). But the HTML part defined in views is seen(i.e. codes are seen not the view) and functionalities are also not executing. So, now what should I do, so that this can be resolved. I know that this is not related to this. but please help me.

    opened by Kam149 0
  • npm install error

    npm install error

    Hi, I want to install the latest version but after run command npm install, i got 9 vulnerabilities. And then if i complete the instructions, i got blank page after run command php artisan serve. Please help me :) image

    opened by mrizkiph 1
Releases(3.2.0)
  • 3.2.0(Apr 21, 2016)

    • Out of the box JWT authentication with Satellizer #202
    • Consistent indentation in editorconfig #190
    • Karma tests setup using ngDescribe thanks to kujtimiihoxha #117
    • consistent file naming for index.routes.js #222
    • update dialog template to .dialog.html #224
    • error toasts: register warn theme to avoid console warning #225
    • Sample JWT authenticated routes for angular #223
    • Out of the box JWT forgot password functionality #129
    • Error interceptors now shows other errors than status 422 #251
    • Generators:
      • auto generate tests for components & services #221
      • Generators auto-import #239
      • added artisan ng:directive generators for specific cases #257
    Source code(tar.gz)
    Source code(zip)
  • 3.2.0-beta(Apr 20, 2016)

  • 3.2.0-alpha(Apr 10, 2016)

    • Out of the box JWT authentication with Satellizer #202
    • Consistent indentation in editorconfig #190
    • Karma tests setup using ngDescribe thanks to kujtimiihoxha #117
    • consistent file naming for index.routes.js #222
    • auto generate tests for components & services #221
    • update dialog template to .dialog.html #224
    • error toasts: register warn theme to avoid console warning #225
    • Sample JWT authenticated routes for angular #223
    • Generators auto-import #239
    Source code(tar.gz)
    Source code(zip)
  • 3.1.0(Mar 6, 2016)

    Upgrade Guide

    https://laravel-angular.readme.io/docs/upgrade-guide

    What's new?

    https://laravel-angular.readme.io/docs/overview#whats-new-in-31

    Source code(tar.gz)
    Source code(zip)
  • 3.0.0(Dec 29, 2015)

    • Extended documentation & moved out of the repository: Docs
    • Upgraded to Angular Material ~1.0
    • Follow angular best practices (John Papa's style guide) in demo
    • Follow angular best practices (John Papa's style guide) in Angular Generators
    • Group all demo functionality in 1 folder so they can be easily removed
    • Removed demo specific code
    • Out of the box support for $templateCache (templates loaded in a single js file instead of ajax)
    • New Logo
    • REST API test helpers
    • JWT test helpers
    • API Response macros (success & error) inline with restangular config
    • Restangular error interceptor to show validation errors in dialog
    • eslint instead of jshint. Eslint configured according to Angular best practices
    • Added getting started guide (available in documentation docs)
    • Moved artisan generators to a different repository. However they're loaded by default here
    • Started with a fresh Laravel 5.1 installation
    • Removed the need to add full namespace in routes (because of dingo/api)
    • Out of the box JWT Setup
    Source code(tar.gz)
    Source code(zip)
  • 2.10.2(Oct 16, 2015)

    • Out of the box laravel-cors #69
    • Rename $scope and $attrs to scope and attrs in directive generator #63
    • Added model factory support #71
    • Fixed livereload when working in vagrant #77
    • Added DialogService confirm method #44
    • Fixed JWT auth bug #82
    Source code(tar.gz)
    Source code(zip)
  • 2.10.1(Oct 1, 2015)

  • 2.10.0(Sep 19, 2015)

    • [backwards incomatible] dingo/api integration with jwt auth #43
    • fixed deploy.sh script to migrate in production #56
    • fixed links in generators documentation #55
    • updated generators to match Demo layout #54
    Source code(tar.gz)
    Source code(zip)
  • 2.9.1(Sep 15, 2015)

  • 2.9.0(Sep 5, 2015)

    • improved description of ng:* generators
    • moved planned features to github issues
    • Applied Laravel 5.1.11 migration (Introduces Authorization support) #39
    • Updated composer depencencies to be aligned with the current version of Laravel #40
    • fixed JWT authentication bug when using Apache #38
    • added unit tests for Laravel Routes. More tests are coming #42
    Source code(tar.gz)
    Source code(zip)
  • 2.8.2(Sep 3, 2015)

  • 2.8.1(Sep 3, 2015)

    • setup code coverage (code climate)
    • travis setup
    • fixed deploy.sh and optimized composer install
    • new demo on elasticbeanstalk (because heroku are messing up with the availability)
    Source code(tar.gz)
    Source code(zip)
  • 2.8.0(Aug 15, 2015)

  • 2.7.5(Aug 14, 2015)

  • 2.7.4(Aug 14, 2015)

  • 2.7.3(Aug 14, 2015)

    • New demo page for Elixir
    • New demo page: Rest API
    • Misc demo page: angular-loading-bar, debugbar & filters
    • Demo Landing page Call to Action
    Source code(tar.gz)
    Source code(zip)
  • 2.7.2(Aug 14, 2015)

  • 2.7.1(Aug 14, 2015)

  • 2.7.0(Aug 13, 2015)

    • custom elixir ingredients setup & sample
    • custom elixir task: make jshint optional
    • custom elixir task: bower - much faster than the one previously used
    • bower task now automatically uses mainFile from bower.json
    • gulp & gulp watch are now much much faster than before
    Source code(tar.gz)
    Source code(zip)
  • 2.6.2(Aug 13, 2015)

    • fixed elixir watcher for less
    • artisan generator for creating a new angular service artisan ng:service name
    • artisan generator for creating a new angular filter artisan ng:filter name
    • artisan generator for creating a new angular config artisan ng:config name
    Source code(tar.gz)
    Source code(zip)
  • 2.6.1(Aug 13, 2015)

    • updated bower dependencies (angular material released 0.10.1)
    • added artisan generator for creating a new angular feature: artisan ng:feature name
    • improve generator to call controller with StudlyCase (StudlyCaseCtrl)
    • artisan generator for creating a angular material custom dialogs: artisan ng:dialog name
    Source code(tar.gz)
    Source code(zip)
  • 2.6.0(Aug 12, 2015)

  • 2.5.0(Aug 11, 2015)

  • 2.4.3(Aug 11, 2015)

  • 2.4.2(Aug 10, 2015)

  • 2.4.0(Aug 10, 2015)

  • 2.3.2(Aug 10, 2015)

  • 2.3.1(Aug 7, 2015)

  • 2.3.0(Aug 7, 2015)

  • 2.2.3(Aug 7, 2015)

Owner
Jad Joubran
Google Developer Expert • Microsoft MVP • Web Consultant
Jad Joubran
Laravel + Angularjs + Bootstrap + AdminLTE binded by Gulp workflow Admin Dashboard Boilerplate / Starter.

Laravel Angular Admin Laravel + Angularjs + Bootstrap + AdminLTE binded by Gulp workflow Admin Dashboard Boilerplate. Plus Oauth and JWT authenticatio

Alex Quiambao 927 Dec 30, 2022
Fluent Interface for Laravel Backpack - Define resources once and get all CRUD configurations ready!

CRUD Resource for Laravel Backpack This package allows creating CRUD panels for Backpack for Laravel administration panel using fluent field definitio

FigLab 8 Nov 20, 2022
🧿 Build navigation or menu for Laravel and Awes.io. Unlimited complexity and depth, with permissions and sorting support.

Navigator Laravel package that can easily create navigation menus of any complexity. With support for routing, permissions, sorting, rendering depth,

Awes.io 47 Jul 18, 2022
project with laravel 9 and php 8 and vuejs 3(modular) in both multi page and single page application

About Project Since Laravel 9 was recently released, it supports PHP 8 and above. So I decided to implement a prototype project using Laravel 9 + PHP

ali ahmadi 10 Sep 7, 2022
TweetNow is a Twitter clone created with Vue.js and Laravel. It is a social media platform that allows users to post short messages, follow other users, and engage in conversations through comments and likes.

TweetNow TweetNow is a opensource social media created with Vue.js+Inertia SSR and Laravel. It is a social media platform that allows users to post sh

I.E.U. Juboraj Naofel 12 Jun 16, 2023
PHP Laravel, MySQL and AIML chatbot engine and admin portal

Lemur Engine The Lemur Engine is a PHP/MySQL/AIML Chatbot. Written using the Laravel Framework. Demo You can demo the bot at the website: https://lemu

The Ramen Robot Disco Code 18 Nov 8, 2022
A Laravel 8 and Vue 3 SPA boilerplate using tailwind styling and sanctum for authentication :ghost:

Laravel Vue Sanctum SPA Laravel and vue spa using tailwind (laravel/ui looks) for styling and sanctum for authentification Features Laravel 8 Vue + Vu

Hijen EL Khalifi 62 Dec 5, 2022
Demo and practice application with Laravel 8 and InertiaJS. (From laracasts course)

InertiaJS playground ⚽️ Started with the Laracasts: Build Modern Laravel Apps Using Inertia.js course and decided to share all my code here, I'll be a

Kasper Ligthart 1 Dec 2, 2021
Laravel 8 boilerplate in docker-compose with Treafik and SSL setup and github workflow ready for CI/CD pipeline

Laravel8 boilerplate Laravel 8 boilerplate in docker-compose with Treafik and SSL setup with .github workflow ready To start the containers in prod en

Tej Dahal 5 Jul 9, 2022
LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like Advanced CRUD Generation, Module Manager, Backups and many more.

LaraAdmin 1.0 LaraAdmin is a Open source CRM for quick-start Admin based applications with features like Advanced CRUD Generation, Schema Manager and

Dwij IT Solutions 1.5k Dec 29, 2022
A Laravel 5 package that switchs default Laravel scaffolding/boilerplate to AdminLTE template and Pratt Landing Page with Bootstrap 3.0

AdminLTE template Laravel package A Laravel package that switch default Laravel scaffolding / boilerplate to AdminLTE template with Bootstrap 3.0 and

Sergi Tur Badenas 1.8k Jan 3, 2023
Base Laravel project with React and Laravel Sanctum authentication

About this project This is a base Laravel project with ReactJS frontend and Laravel Sanctum API authentication. You could read more about here. Instal

David Toth 8 Oct 25, 2022
Laravel Quick-Start - a boilerplate for Laravel Application with typical packages preinstalled and configured

Laravel Quickstart is a boilerplate for Laravel Application with typical packages preinstalled and configured to extend a full-fledged application. We tried to make it as minimal as possible.

Vijay Goswami 18 Sep 8, 2022
React laravel starter kit with tailwind css and vite js(laravel 9)

About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie

Jerald Tonmoy Dias 2 Dec 23, 2022
A Laravel Starter Kit for Laravel. Built with Laravel 8.

Laravel Get Started Project Laravel Get Started Project is a basic crud app built with laravel 8. In this app a basic product crud created. Features i

Nazmul Hasan Robin 8 Nov 24, 2022
Admin Columns allows you to manage and organize columns in the posts, users, comments, and media lists tables in the WordPress admin panel.

Admin Columns allows you to manage and organize columns in the posts, users, comments, and media lists tables in the WordPress admin panel. Transform the WordPress admin screens into beautiful, clear overviews.

Codepress 67 Dec 14, 2022
lara setups is a new star kit for installing latest and greetest version of vue js and bootstrap

Lara setups Introduction lara setups helps you to install latest bootstrap and vue.js version on your laravel project laravel team no longer supports

Mohammad khazaee 11 Jul 12, 2022
a simple and secured RESTful API made with codeIgniter and JSON Web Tokens

CodeIgniter 4 Application Starter What is CodeIgniter? CodeIgniter is a PHP full-stack web framework that is light, fast, flexible and secure. More in

null 2 Oct 8, 2021