learn-angular4 is a simple repository to keep my study files while I keep learning...
Init a new project with angular-cli, you can run:
$ ng new appNameTo run your app, access created directory and run:
$ cd appName
$ ng serverTo generate your components, you need to run ng generate component componentName or abreviate command ng g c componentName.
if you are not using tests, you can omit this to create a spec file to our component, using this flag --spec=false.