-
Notifications
You must be signed in to change notification settings - Fork 147
FAQ
I'd recommend trying https://github.com/angular/angular-cli too, the most important thing is you understand the tooling, and how to update the config.
Simple.
Clone is only for collaborators since they need .git
history, or you need specific branch.
Download is for general purpose use.
Download from releases page is highly recommended.
The starter is ready for production bundling using either SystemJS or Webpack
- You can include the link references in
index.html
withinapp:css
tag
<!-- app:css -->
<link rel="stylesheet" href="../node_modules/.../main.css">
<!-- endinject -->
-
Just do
npm install --save <package-name>
-
Look for the package typings and do
typings install <package-name> --save
, if it's global one, add--global
-
Then just import the package in your TypeScript file
// Example import { filter } from 'lodash';
-
and add the name in systemjs config file, and specify how the package will be loaded, for config reference
-
also add the name in karma config file
This starter may not fit for your workflow, since it's opinionated. Therefore you can always fork and custom it to fit your workflow
☀️ Support this starter by sharing it to your friends, giving stars, or pull requests! 😄