Clone/Download the repo then edit
app.tsinside/src/app/app.component.ts
# install the dependencies with npm
$ npm install
# start the server
$ npm startopen up http://localhost:8080
What you need to run this app:
nodeandnpm(Use NVM)- Ensure you're running Node (
v5.x.x+) and NPM (3.x.x+)
npm installto install all dependencies
After you have installed all dependencies you can now run the app with:
npm startIt will start a local server using webpack-dev-server which will watch, build (in-memory), and reload for you. The port will be displayed to you as http://localhost:8080.
- single run:
npm run build - build files and watch:
npm run watch
Just install the lib and import the css files in vendor.ts. For example this is how to do it with bootstrap:
npm install bootstrap@4.0.0 --saveAnd in vendor.ts add the following:
import 'bootstrap/dist/css/bootstrap.css';