Questions tagged [angular2-seed]

Angular 2 - Seed is high-quality, modular starter (seed) project for Angular 2 apps with statically typed build and AoT. It provides fast, reliable and extensible starter for the development of Angular 2 projects.

angular2-seed provides the following features:

  • Allows you to painlessly update the seed tasks of your already existing project.
  • Supports multiple Angular applications with shared codebase in a single instance of the seed.
  • Ready to go, statically typed build system using gulp for working with TypeScript.
  • Production and development builds.
  • Ahead-of-Time compilation support.
  • Sample unit tests with Jasmine and Karma including code coverage via istanbul.
  • End-to-end tests with Protractor.
  • Development server with Livereload.
  • Following the best practices.
  • Manager of your type definitions using @types.
  • Has autoprefixer and css-lint support.

For more details visit github home of angular2-seed.

22 questions
3
votes
1 answer

Setting volumes in docker-compose.yml file for windows 10 home

Trying to set up docker so that when I change my project files on my windows machine they are updated in my docker container. From this question I learned that you should use the volumes setting in the docker-compose.yml file. But I still can't get…
Kriss
  • 326
  • 1
  • 3
  • 12
3
votes
1 answer

Changing my project files doesn't change files inside the Docker machine

I'm trying to use Docker to improve my workflow. I installed "Docker Toolbox for Windows" on my Windows 10 home edition (since Docker supposedly only work on professional). I'm using mgexhev's angular-seed which claim to provide full docker support.…
Kriss
  • 326
  • 1
  • 3
  • 12
3
votes
0 answers

Angular2 in Edge on https: HTTPS security is compromised by null

I've tried with href="javascript:;" instead of href="" And I've only 'https' calls in Fidler. I'm using angular2-seed for deployment. In console, when I click on app.js it points to the place where 'Environment config' is being shown. Maybe someone…
1gn1ter
  • 1,414
  • 2
  • 22
  • 47
3
votes
1 answer

Kendoui Angular2 install 404s with Angular 2 Seed

I am using Angular 2 Seed app and trying to install KendoUI Angular2 controls. The seed uses SystemJS but is generated on npm start. I have tried to add external dependency using from here but I cannot get it to work. I get Failed to load resource:…
Rob
  • 11,185
  • 10
  • 36
  • 54
2
votes
1 answer

Error: Cannot find module check.versions with angular2-seed

I have a fairly fresh project start from angular2-seed. Until yesterday, everything npm install was working without a problem. Yesterday, I added another dependency into the mix (bootstrap-sass) and the post install task started to fail with the…
Shurik Agulyansky
  • 2,607
  • 2
  • 34
  • 76
2
votes
1 answer

angular2-seed-advanced: got RangeError: Maximum call stack size exceeded

I'm trying to run unchanged angular-seed-advanced project on different platforms. Web and desktop(linux/windows) compiled and ran ok, but when I tried to run it on android(emulator and real device) I got the following error: Successfully deployed on…
Dimanoid
  • 6,999
  • 4
  • 40
  • 55
2
votes
2 answers

Generate static files from Angular 2 seed project

I am developing an application using Angular2-seed. I am trying to make a static demo but some resources are not found. The npm run build.dev creates the following files in the project directory: project |-- dev |-- app |-- app…
marc_aragones
  • 4,344
  • 4
  • 26
  • 38
1
vote
2 answers

Errors for socket.io in angular 2 seed

Unable to integrate socket.io in angular2-seed app. Actually my code is private mySocket:any; getSocketValue() { console.log("this.mySocket"+this.mySocket) if(this.mySocket) { this.mySocket = io(Config.socket_url); } return…
praveen kumar
  • 1,474
  • 4
  • 13
  • 19
1
vote
1 answer

Lazy loaded module not working in prod mode when using mgechev angular2-seed

I'm building an app that need to have lazy loaded module. Everything is working fine on dev mode. When I try to prepare prod dist I have problems with lazy loaded module. Deployment to prod: I'm trying to use this angular-seed:…
mrh
  • 917
  • 1
  • 9
  • 28
1
vote
0 answers

Angular2-Seed & ngx-pipes

Can anyone help me to get the ngx-pipes (https://github.com/danrevah/ngx-pipes) included in the angular2-seed? I tried it like this in the project-config.ts: additionalPackages.push({ name: 'ngx-pipes', path:…
Coach
  • 521
  • 1
  • 5
  • 14
1
vote
3 answers

Not able to run Angular 2 E2E tests using protractor

I am using Angular 2 and Angular 2 Seed package. I am trying to run my E2E tests. I have followed the steps which are listed on Seed page. My protractor config looks like this: const config = { baseUrl: 'http://localhost:6563/', specs: [ …
Pradeep
  • 3,258
  • 1
  • 23
  • 36
0
votes
1 answer

Angular 2 IE SharePoint 'Out of stack space'

We are developing web parts for SharePoint 2013 on-prem using Angular 2 and have come across the 'out of stack space' issue. After spending time checking, double checking, adding and removing every permutation of polyfills that the interweb…
0
votes
1 answer

Cannot resolve a symbol AppModuleNgFactory

I have the following import statement, import { AppModuleNgFactory } from './app.module.ngfactory'; and it spits out an error - Cannot resolve a symbol AppModuleNgFactory. I am using https://github.com/mgechev/angular-seed for my angular 2…
Abhi
  • 4,553
  • 4
  • 16
  • 22
0
votes
4 answers

Deploying Angular2 App, getting unknown non-descriptive error

Getting this error in firebug after angular2 app has been deployed : "TypeError: this._nativeError is undefined" in app.js. *app.js is the javascript that is created from npm run build.prod.aot (and also npm run build.prod). App runs fine locally,…
Joff
  • 95
  • 1
  • 8
0
votes
1 answer

Angular2 basic seed in WebStorm

I am new to Angular2 and WebStorm. I am looking for a basic project seed for WebStorm that I can start play around with Angular2. There are lots of them online, but I can't find a single one that walks me through what are the basic packages that I…
Pacman
  • 2,183
  • 6
  • 39
  • 70
1
2