Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ef2k/angular2-quickstart
Quick start from the Angular2 docs. Decent boilerplate to get started.
https://github.com/ef2k/angular2-quickstart
Last synced: 10 days ago
JSON representation
Quick start from the Angular2 docs. Decent boilerplate to get started.
- Host: GitHub
- URL: https://github.com/ef2k/angular2-quickstart
- Owner: ef2k
- Created: 2016-09-17T02:00:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-17T02:07:35.000Z (over 8 years ago)
- Last Synced: 2024-11-08T10:41:11.069Z (2 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular2 Quickstart
## Get Started
```
$ nvm use
```> If you don't have the listed version, then do `$ nvm install`
Install all dependencies:
```
$ npm install
```Start up the dev server:
```
$ npm start
```## Setting up Vim
Assuming you're using Vundle, in your `.vimrc`:
```
Plugin 'leafgarland/typescript-vim' "Syntax highlighting
Plugin 'Shougo/vimproc.vim' "Dependency to get autocompletion
Plugin 'Quramy/tsuquyomi' "Autocompletion
```**You also want to ignore the types directory**
```
let g:ctrlp_custom_ignore = '\v[\/](node_modules|types|target|dist|tmp|bower_components|vendor)|(\.(swp|ico|git|svn))$'
```