These are the commands and steps needed to scaffold a new Angular Material project from scratch, from an empty folder.
Please make sure to have the latest CLI, and at least NPM 5.
When is doubt, its recommended to update to the latest version of node using a node versioning tool such as for example nave or nvm-windows.
With a CLI version 1.5 or above, let's scaffold a new project with routing:
ng new angular-material-hello-world --routing
Next, let's install these dependencies:
npm install @angular/material @angular/cdk @angular/animations hammerjs
Let's add this to our index.html:
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Before starting to import components, let's choose a widget theme, have a look at the themes available
inside node_modules/@angular/material/prebuild-themes
.
We can for example use the Indigo Pink theme by adding this line to our styles.css file:
@import "~@angular/material/prebuilt-themes/indigo-pink.css";